两个属性一起作主键怎么定义?
我要创建了一个表
Create table ParentChild
(
ParentID int,
ChildID int
)
现在没定义约束,我想把两个属性一起唯一标识元组,我应该怎么定义这个表啊?
------解决方案--------------------Create table ParentChild
(
ParentID int NOT NULL
,ChildID int NOT NULL
,CONSTRAINT PK_ParentChild PRIMARY KEY CLUSTERED(ParentID,ChildID)
)
------解决方案--------------------Create table ParentChild
(
ParentID int,
ChildID int,
primary key(ParentID,ChildID)
)
------解决方案--------------------ALTER TABLE ParentChild ADD PRIMARY KEY(ParentID , ChildID)
------解决方案--------------------Create table ParentChild
(
ParentID int,
ChildID int
primary key (ParentID ,ChildID)
)