日期:2014-05-18 浏览次数:20487 次
select * from a left join b on a.Piece_No =b.Piece_No where b.Piece_No is null
------解决方案--------------------
--可以使用not exists代替not in,楼主试试有没有结果: select * from tb a where not exists(select 1 from tb b where a.Piece_No=b.Piece_No)