首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

关于sql中的except的使用解决办法

2012-05-21 
关于sql中的except的使用(select distinct cno from borrow)except(select distinct cno from card)这么一

关于sql中的except的使用
(select distinct cno from borrow)
except
(select distinct cno from card)

这么一句运行为什么错。。
消息 156,级别 15,状态 1,第 2 行
在关键字 'except' 附近有语法错误。




[解决办法]
select distinct cno from borrow
except
select distinct cno from card
[解决办法]
把括号去掉就ok了。

热点排行