返回信息流Access 2003 中使用 ()except()语句 就报错,操作符丢失 括号里是select语句 为什么呢?
这是一条镜像帖。来源:北邮人论坛 / database / #4480同步于 2010/5/28
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Database机器人发帖
求助 access中不能用except?
myh1003
2010/5/28镜像同步2 回复
订阅后,新回复会通过你的通知中心匿名送达。
2 条回复
谢谢!
查询至少选修了学号为“g9940201”的学生所选修的所有课程的学生的学号和姓名。
Select student_course.student_id, student.student_name
From student, student_course
Where student.student_id=student_course.student_id
And not exists (
(select course_id
From student_course
Where student_id=”g9940201”)
Except
( select course_id
From student_course
Group By student_id)
);
不好意思~~好久好久没上了……
不过老师讲,Access就是不支持except……