Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Creazione di una chiave esterna composita in SQL Server 2008

Una chiave esterna DEVE fare riferimento a colonne che compongono un indice univoco (PK o UK) con lo stesso numero di colonne, i loro tipi e l'ordine. Es.:

CREATE TABLE PrimaryTable (
  Key1 varchar(20),
  Key2 date)
GO

ALTER TABLE PrimaryTable ADD CONSTRAINT PK
  PRIMARY KEY (Key1, Key2)
GO

CREATE TABLE SecondaryTable (
  AutoID int IDENTITY,
  Key1 varchar(20),
  Key2 date)
GO

ALTER TABLE SecondaryTable ADD CONSTRAINT FK
  FOREIGN KEY (Key1, Key2) REFERENCES PrimaryTable (Key1, Key2)
GO


No