SQL语句 下面为什么不能建两个外键呢????

createtable(namechar(10)notnull,websiteIDintnull,cateIDintnull,newUpdateintnotnull,co... create table
(
name char(10)not null,
websiteID int null,
cateID int null,
newUpdate int not null,
constraint fk_fenleihao
foreign key(websiteID ) references T_website(ID)
constraint fk_fenlei
foreign key(cateID) references T_Category(ID)
)

老是报错说我给newUpdate建了两个外键???怎么回事
展开
 我来答
沈阳java
2012-03-22 · TA获得超过1507个赞
知道小有建树答主
回答量:797
采纳率:50%
帮助的人:669万
展开全部
你两个外键之间要用逗号啊。

create table
(
name char(10)not null,
websiteID int null,
cateID int null,
newUpdate int not null,
constraint fk_fenleihao
foreign key(websiteID ) references T_website(ID), --缺少逗号在这添加逗号
constraint fk_fenlei
foreign key(cateID) references T_Category(ID)
)
落叶有期
2012-03-22 · TA获得超过574个赞
知道小有建树答主
回答量:726
采纳率:0%
帮助的人:343万
展开全部
create table T_A
(
name char(10) not null,
websiteID int null,
cateID int null,
newUpdate int not null,
foreign key(websiteID) references T_website(ID),
foreign key(cateID) references T_Category(ID)
)

另外在查询分析器里运行sql语句前最好分析一下,不要直接运行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
frogley
2012-03-22 · TA获得超过1854个赞
知道小有建树答主
回答量:1008
采纳率:50%
帮助的人:1065万
展开全部
第一行没有给出表的名字;第8行最后少了一个逗号

create table ttt
(
name char(10)not null,
websiteID int null,
cateID int null,
newUpdate int not null,
constraint fk_fenleihao
foreign key(websiteID ) references T_website(ID),
constraint fk_fenlei
foreign key(cateID) references T_Category(ID)
)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式