T-SQL外键约束

首先建立测试表数据库 use test; create table test01 ( id1 int not null, id2 int not null ); create table test02 ( id11 int not null, id22 int not null ); alter table test01 add constraint pk_id1 primary key(id
相关文章
相关标签/搜索