《数据库概论》实验(2):交互式SQL--创建表
一、 创建数据库
create database test; /创建test数据库
二、创建表
create table students( /创建学生表
Sno char(7) not null comment '学号',
Sname varchar(10) not null comment '姓名',
Ssex char(2) comment '性别',
Sbirthday date comment '出生日期',
Sdept varchar(10) comment '系',
Memo varchar(10) comment '备注',
check ( Ssex in ('男','女')),
primary key (Sno)
)comment '学生表数据';
create table Course( /创建课程表
Cno char(6) primary key comment '课程号',
Cname char(10) comment '课程名',
PreCno char(6) comment '先修课号',
Credit tinyint unsigned comment '学分',
check ( Credit between 0 and 10),
foreign key (PreCno) references Course(Cno)
)comment '课程表';
create table SC( /创建选课表
Sno char(6) not null comment '学号',
Cno char(6) not null comment '课程号',
Grade dec(4,1) default null comment '成绩',
primary key (Sno,Cno),
foreign key (Sno) references students(Sno),
foreign key (Cno) references Course(Cno),
check ( Grade between 0.0 and 100.0)
)comment '选课表';
三、向表中插入数据
insert into students values /在表students中插入数据
(0602001,'钟耀华','男','1987-05-01','计算机','优秀毕业生'),
(0602002,'吴佳硕','男','1987-03-24','计算机','爱好:音乐'),
(0602003,'吴纯斌','男','1988-07-01','计算机',null),
(0701001,'王腾飞','男','1988-05-04','机电','爱好:音乐'),
(0701002,'林师微','女','1987-04-03' ,'机电','爱好:体育'),
(0701003,'李乐怡','女','1986-03-03','机电',null),
(0703001,'李奇','男','1988-09-17','工商管理',null);
insert into Course values /在表Course中插入数据
('C1','数据结构',null,4),
('C2','数据库原理','C1',4),
('C3','大型数据库','C2',3),
('C4','高尔夫',null,1);
insert into SC values /在表SC中插入数据
(0602001,'C1',61),
(0602001,'C2',72),
(0602001,'C3',88),
(0602002,'C1',null),
(0602002,'C2',61),
(0701001,'C1',50),
(0701001,'C2 ,null),
(0701002,'C3',78),
(0701003,'C1',52),
(0701003,'C3',87);
《数据库概论》实验(3)-交互式SQL--简单查询
①查询计算机系学生的学号、姓名、性别和出生日期。
select Sno,Sname,Sbirthday,Ssex from students where Sdept = '计算机';