select * from t where deptId exists(1,6); 为什么会报错呢,不能这样使用吗?
2条回答 默认 最新
threenewbee 2017-10-26 00:35关注select * from t where deptId in(1,6);
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
select * from t where deptId exists(1,6); 为什么会报错呢,不能这样使用吗?
select * from t where deptId in(1,6);