INNER和LEFT JOIN之间缺少记录

|
select id from table
= 260595条记录
select id from table
   left join table2 on table2.id = table.parent
= 260595条记录
select id from table
   inner join table2 on table2.id = table.parent
= 260192条记录 找出
table
中的哪些记录有错误的(不存在)联接以便我可以更正它们的最简单方法是什么? 谢谢。     
已邀请:
select id from table left join table2 on table2.id = table.parent
EXCEPT
select id from table inner join table2 on table2.id = table.parent
    
使用这个(它将为您提供表2中没有对应记录的id):
select id 
  from table left join table2 
    on table2.id = table.parent
 where table.parent is null
    
select id from table inner join table2 on table2.id <> table.parent
    

要回复问题请先登录注册