我有3個表,students
,courses
,enroll
以關係爲「學生課程註冊」如何在MySQL中創建關係表?
我已經創建students
表sid
作爲主鍵
我已經創建courses
表cid
作爲主鍵
現在我要創建enroll
表,我做了如下,但它顯示的關鍵字references
錯誤,什麼是錯?
create table enroll(
grade char(2),
sid int not null,
cid int not null,
primary key(sid,cid),
foreign key cid references courses on delete cascade,
foreign key sid references students on delete cascade
);
是否使用的是RDBMS?而且,這是功課嗎? – Aaron 2012-04-13 17:55:28
我在使用MySQL和eclipse。是的,這是作業! – user1291453 2012-04-13 17:58:01