1.建表以后,使用sql 语句添加约束失败,我写的sql是
Alter table tb_Login
ADD Constraint ct_tb_con1
Foreign key(ID) References tb_UserPope(ID)
错误提示是:There are no primary or candidate keys in the referenced table 'tb_UserPope' that match the referencing column list in the foreign key 'ct_tb_con1'.
sql应当怎么写?tb_Login 和tb_UserPope表中的ID都是主键。
2.添加约束条件是不是还有一种UI的方式,只能使用sql语句吗?
谢谢!
1:sql语句都不行,其他的都是没有用的,你把你的表结构截个图出来,你的外键表,不会不是唯一的主键,是联合主键吧
2:用管理工具直接建立外键