FOREIGN KEY Constraints : Foreign Key « Constraints « 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 » Constraints » Foreign Key 
7. 3. 2. FOREIGN KEY Constraints
<column name> <data type> <nullability>
FOREIGN KEY REFERENCES <table name>(<column name>)
    [ON DELETE {CASCADE|NO ACTION}]
    [ON UPDATE {CASCADE|NO ACTION}]

11CREATE TABLE Customers (
12>     CustomerID nchar (5NOT NULL PRIMARY KEY ,
13>     CompanyName nvarchar (40NOT NULL ,
14>     ContactName nvarchar (30NULL ,
15>     ContactTitle nvarchar (30NULL ,
16>     Address nvarchar (60NULL ,
17>     City nvarchar (15NULL ,
18>     Region nvarchar (15NULL ,
19>     PostalCode nvarchar (10NULL ,
20>     Country nvarchar (15NULL ,
21>     Phone nvarchar (24NULL ,
22>     Fax nvarchar (24NULL
23)
24> GO
1>
2>
3>
4>    CREATE TABLE Orders
5>    (
6>       OrderID      int   IDENTITY   NOT NULL
7>          PRIMARY KEY,
8>       CustomerNo   nchar              NOT NULL
9>          FOREIGN KEY REFERENCES Customers(CustomerID),
10>       OrderDate    smalldatetime    NOT NULL,
11>       EmployeeID   int              NOT NULL
12>    )
13>    GO
Msg 1753, Level 16, State 1, Server J\SQLEXPRESS, Line 4
Column 'Customers.CustomerID' is not the same length as referencing column 'Orders.CustomerNo' in foreign key 'FK__Orders__Customer__43C1CFF5'. Columns participating in a foreign key relationship must
 be defined with the same length.
Msg 1750, Level 16, State 1, Server J\SQLEXPRESS, Line 4
Could not create constraint. See previous errors.
7. 3. Foreign Key
7. 3. 1. The FOREIGN KEY Clause
7. 3. 2. FOREIGN KEY Constraints
7. 3. 3. A statement that adds a foreign key constraint
7. 3. 4. ON DELETE and ON UPDATE Options
7. 3. 5. Adding a FOREIGN KEY to the Employees Table
7. 3. 6. Re-creating the FOREIGN KEY with NO ACTION (Implicitly)
7. 3. 7. Referential Constraints
7. 3. 8. Cascading Updates and Deletes
7. 3. 9. Supporting Basic Referential Integrity with Foreign Keys
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.