Day.1建表小作业
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Day.1建表小作业相关的知识,希望对你有一定的参考价值。
mysql练习题博客地址:http://www.cnblogs.com/wupeiqi/articles/5729934.html
代码如下:
create table class( cid int not null primary key ,caption char(10))engine=innodb default charset=utf8; insert into class values(1,‘三年二班‘),(2,‘一年三班‘),(3,‘三年一班‘);
create table teacher( tid int not null primary key,tname char(10))engine=innodb default charset=utf8; insert into teacher values(1,‘egon‘),(2,‘alex‘),(3,‘wusir‘);
create table student( sid int not null primary key,sname char(10),gender enum(‘男‘,‘女‘),class_id int not null,constraint fk_sc foreign key (class_id) references class(cid))engine=innodb default charset=utf8; insert into student values(1,‘钢蛋‘,‘女‘,1),(2,‘铁锤‘,‘女‘,1),(3,‘山炮‘,‘男‘,2);
create table course( cid int not null primary key,cname char(10),teacher_id int not null,constraint fk_ct foreign key (teacher_id) references teacher(tid))engine=innodb default charset=utf8; insert into course values(1,‘生物‘,1),(2,‘体育‘,1),(3,‘物理‘,2);
create table score( sid int not null primary key,student_id int not null,course_id int not null,number int not null,constraint fk_ss foreign key (student_id) references student(sid),constraint fk_scadd foreign key (course_id) references course(cid))engine=innodb default charset=utf8; insert into score values(1,1,1,60),(2,1,2,59),(3,2,2,100);
以上是关于Day.1建表小作业的主要内容,如果未能解决你的问题,请参考以下文章
作业-----水电费管理系统------赶作业先发-----应该先建模--ER图才能建表
三十iptables filter表小案例iptables nat表应用
HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段