消息156,级别 15,状态 1,第 5 行 关键字 'having' 附近有语法错误...
发布网友
发布时间:2024-10-11 06:51
我来回答
共3个回答
热心网友
时间:2024-10-23 16:15
没有分组,不要用Having
select s.sno,sname,sc.cno,cname,grade
from s,sc,c
where s.sno=sc.sno and s.depa='计算机系' and sc.cno=c.cno
and grade <(select avg(grade) from sc)
order by sno
热心网友
时间:2024-10-23 16:10
哇!晕了!不懂
热心网友
时间:2024-10-23 16:11
select s.sno,sname,sc.cno,cname,grade
from s,sc,c
where s.sno=sc.sno and s.depa='计算机系' and sc.cno=c.cno
order by sno
group by s.sno,sname,sc.cno,cname,grade
having grade<avg(grade)