Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Vergleichen Sie zwei identische Tabellen 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;

Sie können in where-Spalten weitere Spalten hinzufügen, um weitere Informationen zu überprüfen. Versuchen Sie zu sehen, ob dies hilft.