我的意思是例如我可以创建像
create table XTable
(
idt int not null primary key,
value nvarchar(50),
idq int,
constraint fk_idq foreign key(idq) references YTable(idq)
)
我可以像这样创建它
create table XTable
(
idt int not null primary key,
value nvarchar(50),
idq int,
foreign key(idq) references YTable(idq)
)
我通常像第二个例子一样创建表格,但现在我对第一个例子很好奇。有什么区别?