mysql一个表两个属性可以被设外键吗?
表A有连个属性,bookid和authorid,都为主外键表book中,有bookid设外键于A(bookid),表author中,有authorid设外键于A(auth...
表A有连个属性,bookid和authorid,都为主外键
表book中,有bookid设外键于A(bookid),
表author中,有authorid设外键于A(authorid).
这样可以吗,我每次只能设一个,设另一个就出错,
Can't create table '.\booksmanagementsystem\#sql-99c_1.frm' (errno: 150)
怎么解决啊? 展开
表book中,有bookid设外键于A(bookid),
表author中,有authorid设外键于A(authorid).
这样可以吗,我每次只能设一个,设另一个就出错,
Can't create table '.\booksmanagementsystem\#sql-99c_1.frm' (errno: 150)
怎么解决啊? 展开
1个回答
展开全部
一张表中的主键只能有一个,外键可以有多个,如果一张表中多个列都需要被别的表的外键参考,需要使用候选码(非空并且唯一),具体到你的这个问题的需求可以考虑用如下方法解决:
把A表中的bookid和authorid都设置为非空并且唯一,即
create table A(bookid int not null unique, authorid int not null unique);
然后在book表和author表中就可以分别设置外键来参照A表中两个不同的字段了。
把A表中的bookid和authorid都设置为非空并且唯一,即
create table A(bookid int not null unique, authorid int not null unique);
然后在book表和author表中就可以分别设置外键来参照A表中两个不同的字段了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |