表名和欄位 –1.學生表Student(s_id,s_name,s_birth,s_sex) --學生編號,學生姓名, 出生年月,學生性別–2.課程表Course(c_id,c_name,t_id) – --課程編號, 課程名稱, 教師編號額–3.教師表Teacher(t_id,t_name) -- ...
表名和欄位
------------------------------------------------------------------------------
–1.學生表
Student(s_id,s_name,s_birth,s_sex) --學生編號,學生姓名, 出生年月,學生性別
–2.課程表
Course(c_id,c_name,t_id) – --課程編號, 課程名稱, 教師編號額
–3.教師表
Teacher(t_id,t_name) --教師編號,教師姓名
–4.成績表
Score(s_id,c_id,s_score) --學生編號,課程編號,分數
測試數據
------------------------------------------------------------------------------
--建表
--學生表
CREATE TABLE `Student`(
`s_id` VARCHAR(20),
`s_name` VARCHAR(20) NOT NULL DEFAULT '',
`s_birth` VARCHAR(20) NOT NULL DEFAULT '',
`s_sex` VARCHAR(10) NOT NULL DEFAULT '',
PRIMARY KEY(`s_id`)
);
--課程表
CREATE TABLE `Course`(
`c_id` VARCHAR(20),
`c_name` VARCHAR(20) NOT NULL DEFAULT '',
`t_id` VARCHAR(20) NOT NULL,
PRIMARY KEY(`c_id`)
);
--教師表
CREATE TABLE `Teacher`(
`t_id` VARCHAR(20),
`t_name` VARCHAR(20) NOT NULL DEFAULT '',
PRIMARY KEY(`t_id`)
);
--成績表
CREATE TABLE `Score`(
`s_id` VARCHAR(20),
`c_id` VARCHAR(20),
`s_score` INT(3),
PRIMARY KEY(`s_id`,`c_id`)
);
--插入學生表測試數據
insert into Student values('01' , '趙雷' , '1990-01-01' , '男');
insert into Student values('02' , '錢電' , '1990-12-21' , '男');
insert into Student values('03' , '孫風' , '1990-05-20' , '男');
insert into Student values('04' , '李雲' , '1990-08-06' , '男');
insert into Student values('05' , '周梅' , '1991-12-01' , '女');
insert into Student values('06' , '吳蘭' , '1992-03-01' , '女');
insert into Student values('07' , '鄭竹' , '1989-07-01' , '女');
insert into Student values('08' , '王菊' , '1990-01-20' , '女');
--課程表測試數據
insert into Course values('01' , '語文' , '02');
insert into Course values('02' , '數學' , '01');
insert into Course values('03' , '英語' , '03');
--教師表測試數據
insert into Teacher values('01' , '張三');
insert into Teacher values('02' , '李四');
insert into Teacher values('03' , '王五');
--成績表測試數據
insert into Score values('01' , '01' , 80);
insert into Score values('01' , '02' , 90);
insert into Score values('01' , '03' , 99);
insert into Score values('02' , '01' , 70);
insert into Score values('02' , '02' , 60);
insert into Score values('02' , '03' , 80);
insert into Score values('03' , '01' , 80);
insert into Score values('03' , '02' , 80);
insert into Score values('03' , '03' , 80);
insert into Score values('04' , '01' , 50);
insert into Score values('04' , '02' , 30);
insert into Score values('04' , '03' , 20);
insert into Score values('05' , '01' , 76);
insert into Score values('05' , '02' , 87);
insert into Score values('06' , '01' , 31);
insert into Score values('06' , '03' , 34);
insert into Score values('07' , '02' , 89);
insert into Score values('07' , '03' , 98);
---------------------
練習題
------------------------------------------------------------------------------
-- 1、查詢"01"課程比"02"課程成績高的學生的信息及課程分數
select
s1.*,
s2.01_score,
s2.02_score
from
student s1,
(
select t1.s_id as s_id,
t1.s_score as 01_score,
t2.s_score as 02_score
from
score t1,
score t2
where
t1.s_id = t2.s_id
and t1.c_id = '01'
and t2.c_id = '02'
and t1.s_score > t2.s_score ) s2
where
s1.s_id = s2.s_id;
-- 2、查詢"01"課程比"02"課程成績低的學生的信息及課程分數
select
s1.*,
s2.01_score,
s2.02_score
from
student s1,
(
select t1.s_id as s_id,
t1.s_score as 01_score,
t2.s_score as 02_score
from
score t1,
score t2
where
t1.s_id = t2.s_id
and t1.c_id = '01'
and t2.c_id = '02'
and t1.s_score < t2.s_score ) s2
where
s1.s_id = s2.s_id;
-- 3、查詢平均成績大於等於60分的同學的學生編號和學生姓名和平均成績
select
t1.s_id,
t2.s_name,
avg(t1.s_score) as avg_score
from
score t1
left join student t2 on
t1.s_id = t2.s_id
group by
t1.s_id
having
avg(t1.s_score) >= 60;
-- 4、查詢平均成績小於60分的同學的學生編號和學生姓名和平均成績
-- (包括有成績的和無成績的)
select
t1.s_id,
t2.s_name,
avg(t1.s_score) as avg_score
from
score t1
left join student t2 on
t1.s_id = t2.s_id
group by
t1.s_id
having
avg(t1.s_score) < 60;
-- 5、查詢所有同學的學生編號、學生姓名、選課總數、所有課程的總成績
select
t2.s_id,
t2.s_name,
count(t1.c_id) as sun_course,
sum(t1.s_score) as sum_score
from
student t2
left join score t1 on
t1.s_id = t2.s_id
group by
t1.s_id;
-- 6、查詢"李"姓老師的數量
select
count(1)
from
teacher
where
t_name like '李%' ;
-- 7、查詢學過"張三"老師授課的同學的信息
select
t1.*
from
student t1,
score t2
where
t1.s_id = t2.s_id
and t2.c_id in (
select c_id
from
course
where
t_id = (
select t_id
from
teacher
where
t_name = '張三'));
-- 8、查詢沒學過"張三"老師授課的同學的信息
select
*
from
student
where
s_id not in (
select
distinct s_id
from
score
where
c_id in (
select t2.c_id
from
teacher t1,
course t2
where
t1.t_id = t2.t_id
and t1.t_name = '張三'));