您的位置:首页 > 博客中心 > 数据库 >

oracle/sql.

时间:2022-03-10 17:03

3 table S(student), C(course), SC(StudentCourse):

s(sno,sname)

c(cno,cname,cteacher)

sc(sno, cno, scgrade)

Q:

  1. 找出没选过“liming”老师的所有学生姓名.
  2. 列出2门以上(含2门)不及格学生姓名及平均成绩.
  3. 既学过1号课程又学过2号课所有学生的姓名.

A:

  1,

1 select sname from s join sc on(s.sno = sc.sno) join c on(sc.cno = c.cno)
2 where cteacher <> ‘liming‘

  2.1,

1 select sname from s where sno in
2 (
3 select sno from sc where scgrade < 60 group by sno having count(*) >= 2
4 )

  2.2,

gxlsystem.com,布布扣

  3,

1 select sname from s join sc on(s.sno = sc.sno)
2 where sno in
3 (
4     select sno from sc where cno = 1 and sno in 
5     (select sno from sc where cno = 2)
6 )

 

 ref: oracle

oracle/sql.,布布扣,bubuko.com

热门排行

今日推荐

热门手游