select id from table
= 260 595 records
select id from table
left join table2 on table2.id = table.parent
= 260 595 records
select id from table
inner join table2 on table2.id = table.parent
= 260 192 records
What is the easiest way to find out what records in table
have wrong (nonexistent) join so I can correct them?
Thanks.