--从A表中取出不存在于B表中的ClientNum 的ClientNum
select clientnum from A where clientnum not in (select clientnum from B)
我添加了一条不存在的ClientNum 记录,为啥什么也没查到,是我晕了吗》》》
------解决方案-------------------- 你的写法没有问题。看看数据。
------解决方案-------------------- select clientnum from A where not exists(select 1 from B where a.clientnum =b.clientnum )
------解决方案-------------------- not in 排除掉了null的情况。
------解决方案-------------------- 有空格或者特殊字符吧.
------解决方案--------------------
SQL code
select clientnum from A
except
select clientnum from B
------解决方案-------------------- select a.c1 from A a,B b where a.c1=b.c1 应该可以实现吧