select distinct s1.name
from stu s1
where not exists (
select 1
from stu s2
where s2.name = s1.name and s2.score <=60
)
from stu s1
where not exists (
select 1
from stu s2
where s2.name = s1.name and s2.score <=60
)
点赞 8 评论 5
全部评论
相关推荐
11-17 09:21
门头沟学院 后端 点赞 评论 收藏
分享