|
发表于 2020-1-27 18:45:01
|
显示全部楼层
create table dept (
code int not null,
dep_code int null,
name char(50) not null,
constraint PK_DEPT primary key (code)
)
go
alter table dept
add constraint FK_DEPT_RELATIONS_DEPT foreign key (dep_code)
references dept (code)
go
------------------
code是部门表的主键,dept_code是个特殊的外键,是对自身主键(code)的引用,也就是说dept和它自身有一对多的关系. |
|