Update table in a trigger : Trigger « Trigger « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Trigger » Trigger 
22. 1. 4. Update table in a trigger
3CREATE TABLE Customers (
4>      CustomerID nchar (5NOT NULL ,
5>      CompanyName nvarchar (40NOT NULL ,
6>      ContactName nvarchar (30NULL ,
7>      ContactTitle nvarchar (30NULL ,
8>      Address nvarchar (60NULL ,
9>      City nvarchar (15NULL ,
10>     Region nvarchar (15NULL ,
11>     PostalCode nvarchar (10NULL ,
12>     Country nvarchar (15NULL ,
13>     Phone nvarchar (24NULL ,
14>     Fax nvarchar (24NULL
15)
16> GO
1>
2INSERT Customers VALUES('1','A','Maria',    'Sales',  'Str. 57', 'Berlin'    ,NULL,'12209', 'Germany','111-1111111','111-1111111')
3INSERT Customers VALUES('2','M','Joe',      'Owner',  'Ave. 231','Vancouver' ,NULL,'05023', 'Mexico', '(222222-3332',NULL)
4INSERT Customers VALUES('3','H','Thomas',   'Sales',  'Sq.  111','London'    ,NULL,'1D00P', 'UK',     '(444444-4444','(444444-4444')
5INSERT Customers VALUES('4','B','Berg',     'Order',  'Blv    8','Toronto'   ,NULL,'00222', 'Sweden', '4444-55 55 65','5555-55 55 55')
6INSERT Customers VALUES('5','S','Moos',     'Sales',  'Fort  57','New York'  ,NULL,'68306', 'Germany','6666-66666','6666-77777')
7INSERT Customers VALUES('6','F','Cite',     'Manager','24      ','Dalles'    ,NULL,'67000', 'France', '88.60.15.31','88.60.15.32')
8INSERT Customers VALUES('7','C','Sommer',   'Owner',  'Araq, 67','Paris'     ,NULL,'28023', 'Spain',  '(91555 22 82','(91555 91 99')
9INSERT Customers VALUES('8','P','Leb',      'Owner',  '12      ','Beijing'   ,NULL,'13008', 'France', '91.24.45.40','91.24.45.41')
10INSERT Customers VALUES('9','D','Elizabeth','Manager','23 Blvd.','Tsawassen','BC', 'T2F8M4','Canada', '(604555-4729','(604555-3745')
11> go

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2>
3CREATE TABLE OrderDetails (
4>      OrderID int NOT NULL ,
5>      ProductID int NOT NULL ,
6>      UnitPrice money NOT NULL DEFAULT (0),
7>      Quantity smallint NOT NULL DEFAULT (1),
8>      Discount real NOT NULL DEFAULT (0)
9)
10> GO
1INSERT OrderDetails VALUES(10248,11,14,12,0)
2INSERT OrderDetails VALUES(10248,42,9.8,10,0)
3INSERT OrderDetails VALUES(10248,72,34.8,5,0)
4INSERT OrderDetails VALUES(10249,14,18.6,9,0)
5INSERT OrderDetails VALUES(10249,51,42.4,40,0)
6INSERT OrderDetails VALUES(10250,41,7.7,10,0)
7INSERT OrderDetails VALUES(10250,51,42.4,35,0.15)
8INSERT OrderDetails VALUES(10250,65,16.8,15,0.15)
9INSERT OrderDetails VALUES(10251,22,16.8,6,0.05)
10INSERT OrderDetails VALUES(10251,57,15.6,15,0.05)
11> go

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2CREATE TABLE Orders (
3>      OrderID int NOT NULL ,
4>      CustomerID nchar (5NULL ,
5>      EmployeeID int NULL ,
6>      OrderDate datetime NULL ,
7>      RequiredDate datetime NULL ,
8>      ShippedDate datetime NULL ,
9>      ShipVia int NULL ,
10>     Freight money NULL DEFAULT (0),
11>     ShipName nvarchar (40NULL ,
12>     ShipAddress nvarchar (60NULL ,
13>     ShipCity nvarchar (15NULL ,
14>     ShipRegion nvarchar (15NULL ,
15>     ShipPostalCode nvarchar (10NULL ,
16>     ShipCountry nvarchar (15NULL
17)
18> GO
1>
2>
3>
4>    ALTER TABLE Customers
5>       ADD CurrentBalance money NOT NULL
6>       CONSTRAINT CurrentBalanceDefault
7>       DEFAULT WITH VALUES
8> GO
1>    CREATE TRIGGER myTrigger
2>       ON OrderDetails
3>       FOR INSERT, UPDATE, DELETE
4>    AS
5>       UPDATE c
6>          SET c.CurrentBalance = c.CurrentBalance + i.UnitPrice * i.Quantity *
7>                                 (- Discount)
8>       FROM Customers c
9>       JOIN Orders o
10>          ON c.CustomerID = o.CustomerID
11>       JOIN Inserted i
12>          ON o.OrderID = i.OrderID
13>       UPDATE c
14>          SET c.CurrentBalance = c.CurrentBalance - d.UnitPrice * d.Quantity *
15>                                 (- d.Discount)
16>       FROM Customers c
17>       JOIN Orders o
18>          ON c.CustomerID = o.CustomerID
19>       JOIN Deleted d
20>          ON o.OrderID = d.OrderID
21> GO
1>
2> drop TRIGGER myTrigger;
3> GO
1>
2> drop table Customers;
3> drop table Orders;
4> drop table OrderDetails;
5> GO
22. 1. Trigger
22. 1. 1. The syntax of the CREATE TRIGGER statement
22. 1. 2. exits if the price column has not been updated.
22. 1. 3. Define variables in a trigger
22. 1. 4. Update table in a trigger
22. 1. 5. Check @@ROWCOUNT in a trigger
22. 1. 6. Rollback transaction in a trigger
22. 1. 7. RAISERROR in trigger
22. 1. 8. Disable a trigger
22. 1. 9. Enable a trigger
22. 1. 10. Check business logic in a trigger
22. 1. 11. Check record matching in a trigger
22. 1. 12. Table for INSTEAD OF Trigger for Logical Deletes
22. 1. 13. INSTEAD OF INSERT trigger for a table
22. 1. 14. Trigger Scripts for Cascading DELETEs
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.