分别用一条SQL语句完成以下题目的操作: 1. 查询年龄为19岁的女同学的...

发布网友 发布时间:1天前

我来回答

1个回答

热心网友 时间:2分钟前

1
select sno,sname from s where ssex='女' and sage=19

2
select cname,clocation from c where clocation='主楼' order by teacher

3
select sno from sc where grade>=80 and cno in (select cno from c where cname='数据库原理')

4
select s.sno,s.sname,avg(grade) from s,c,sc where s.sno=sc.sno and c.cno=sc.cno group by s.sno,s.sname

5
selete from sc where cno in (select cno from sc group by cno having count(*)<=10)

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com