主题:请教SQLServer 2000中except的问题
2000的个人版中查询选择了C1或C2而没选C3课程的学生号
(select distinct sno
from SC
where cno='C1' or cno='C2')
except
(select distinct sno
from SC
where cno='C3')
提示在关键字 'except' 附近有语法错误。
该怎么改啊!望高手指教!
(select distinct sno
from SC
where cno='C1' or cno='C2')
except
(select distinct sno
from SC
where cno='C3')
提示在关键字 'except' 附近有语法错误。
该怎么改啊!望高手指教!