select * from Student;
--查询年龄比李昊 大的学生信息
--查询到李昊的年龄
select * from Student where sage>
(
select sage from Student where sname='李昊'
)
--查询大于平均年龄的学生信息
select * from Student where sage >
(
--先查询出平均年龄
select avg(sage) from Student
)
--in:等于 or 在指定值内
select * from score
--查询参加考试的学生的信息
select * from Student where sid in(
--查询到有成绩的学生学号
select sid from Score
)
--查询 学号为1的学生信息
select * from Student where sid =1;
--查询学号1 和 2的 学生信息
select * from Student where sid =1 or sid=2
--查询 学号为 1 、2、 3、5的学生信息
select * from Student where sid in(1,2,3,5)
--not in:不包括
--查询没有考试的学生信息
select * from Student where sid not in
(
select sid from score
)
--视图view:
--查询所有学生的学生信息 和 成绩(包括没考试的)
select*from Student a
full join score b
on a.sid=b.sid
--创建视图
create view v_T283
as
select a.sid,a.sname,a.sage,a.ssex,
b.js,b.bs from Student a
full join score b
on a.sid=b.sid
--使用视图
select * from v_T283
--
create view T_del
as
--删除视图:
drop view v_T283