SQL练习

--18.
create table grade(low number(3),upp number (3),rank char(1));
insert into gGrade values(90,100,'A');
insert into grade values(80,89,'B');
insert into grade values(70,79,'C');
insert into grade values(60,69,'D');
insert into grade values(0,59,'E');

grade表:

select SNO,CNO,rank from t_hq_score,grade where DEGREE between low and upp;

--19.
select * from t_hq_score where CNO='3-105'and degree >all(select degree from t_hq_score where SNO='109');

--21.
select * from t_hq_score where DEGREE >(select degree from t_hq_score where cno='3-105'and sno='109');

--22.
--最初
select sno,sname,sbirthday from t_hq_student where sbirthday in (select sbirthday from t_hq_student where sno='108');
--改过后
select sno,sname,sbirthday from t_hq_student where to_char( sbirthday,'yyyy' ) = to_char( (select sbirthday from t_hq_student where sno='108'),'yyyy');

--23.
select * from t_hq_score where cno in(select cno from t_hq_course where tno in(select tno from t_hq_teacher where tname='张旭'));

--24.
select tname from t_hq_teacher where tno in(select tno from t_hq_course where cno in (select cno from t_hq_score group by cno having count(*)>5));

 

转载于:https://www.cnblogs.com/zxw0004/p/4936524.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值