An introductory tutorial on MS SQL foreign KEY constraints and reference constraints

Source: Internet
Author: User

FOREIGN KEY constraints and parameter constraints
The Carifo table of the pubs database creates a foreign key constraint, and the primary key ID of the table is carfactory.
*/
Use Pubs
Go
/* Do not display the number of lines *
   SETNOCOUNT on
Go
/* Create Sample Table * *
IF EXISTS (SELECT * from dbo.sysobjects
WHERE id = object_id (N ' Carinfo ')
and OBJECTPROPERTY (ID, N ' isusertable ') = 1)
DROPTABLECarinfo
Go
CREATE TABLE Carinfo (
car_id CHAR (10),
Name CHAR (10),
Type CHAR (20),
Driver_type CHAR (15)
)
IF EXISTS (SELECT * from dbo.sysobjects
WHERE id = object_id (N ' carfactory ')
and OBJECTPROPERTY (ID, N ' isusertable ') = 1)
DROP TABLE Carfactory
Go
CREATE TABLE Carfactory (
ID CHAR (a) not NULL,
Name CHAR (20),
Postcode CHAR (6),
Telphone CHAR (15),
   AddressCHAR (30),
)
Go
ALTER TABLE Carfactory
ADD CONSTRAINT pk_car_id
PRIMARYKEYNonclustered (ID)
Go
ALTER TABLE Carinfo
With NOCHECK
ADD CONSTRAINT Car_id_link
FOREIGN KEY (car_id) REFERENCES carfactory (ID)
Go
Use master
EXEC sp_dboption Pubs, ' dbo use only ', TRUE
Go
Use Pubs
SET NOCOUNT on
Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.