Mysql
 sql >> Database >  >> RDS >> Mysql

Confronta due tabelle identiche MySQL

select * from (
SELECT 'Table1',t1.* FROM table1 t1 WHERE 
(t1.id)
NOT IN (SELECT  t2.id FROM table2 t2)
UNION ALL
SELECT 'Table2',t2.* FROM table2 t2 WHERE   
(t2.id) 
NOT IN (SELECT  t1.id FROM table1 t1))temp order by id;

Puoi aggiungere più colonne in cui le colonne per controllare più informazioni. Prova a vedere se questo aiuta.