日期:2025-07-12 13:27:24 人气:1

    A+
热门评论

not exists在嵌套子查询中如何使用

1、select 学生.姓名 from 学生 where not exists( select * from 课程 where not exists( select * from 选读 where 学号=学生.学号 and 课程号=课程.课程号)) 2、select 学生.姓名 from 学生 where not exists( select * from 选读 where 学号=学生.学号 )

阅读全文