牛客网,网易校招
真题
select Sname
from S
​where SNo not in
​(select SNO
​from SC
​where cno not in
(select cno
​from C
​where​
​CTEACHER==‘小易’))

​select sname,ave(sum(score))
​from S
​join SC
​on S.SNO=SC.SNO
​where
​(select score
​from S
​where score>90​
​ground by sno
​having count(cno)>3)

相关文章:

  • 2021-04-04
  • 2021-11-06
  • 2021-12-15
  • 2022-02-09
  • 2021-09-08
  • 2021-07-29
  • 2021-08-25
  • 2021-08-15
猜你喜欢
  • 2021-11-23
  • 2021-08-29
  • 2021-09-22
  • 2022-12-23
  • 2021-12-06
  • 2022-01-18
  • 2021-06-17
相关资源
相似解决方案