select * from tablea where uid not in(select uid from tableB)
执行该语句没有返回值
原因是select uid from tableB该结果集中有null导致返回不了
select * from tablea where uid not in(select uid from tableB where uid is not null)
select * from tablea where uid not in(select uid from tableB)
执行该语句没有返回值
原因是select uid from tableB该结果集中有null导致返回不了
select * from tablea where uid not in(select uid from tableB where uid is not null)