Create table test1
(
id bigint Not Null,
name varchar(10) Not Null
constraint pk_test primary key(id,name)
)
Create table test2
(
Mid bigint Not Null references test1(id) ,
MSalary varchar(10) Not Null
)
在 test2 中,我无法创建对 test1 id 的引用请帮助我.. 提前致谢!!!!