摘要: create table students( sid int not null primary key auto_increment, sname char(4) not null, ssex char(2) not null);create table course( cid int not null primary key auto_increment, cname varchar(64) not null,);create table student_course( sid int not null, cid int not null, constraint for_key_sid fo 阅读全文
posted @ 2012-06-27 22:29 Brin Page 阅读(196) 评论(0) 推荐(0) 编辑