日期:2014-05-18  浏览次数:20535 次

请问这个查询已经如何实现?
有两个表table1 和 table2,分别有字段为 货号及数量
现按以下要求找出
table1在table2没有的货号;另外table1和table2货号相同,但是数量不同的货号



------解决方案--------------------
SQL code
方法一:
select m.货号 from table1 m where m.货号 not in (select 货号 from table2)
union all
select m.货号 from table1 m , table2 n where m.货号 = n.货号 and m.数量 <> n.数量

方法二:
select m.货号 from table1 m where not exists (select 1 from table2 n where n.货号 = m.货号)
union all
select m.货号 from table1 m , table2 n where m.货号 = n.货号 and m.数量 <> n.数量