sql >> Base de Datos >  >> RDS >> Mysql

Compara dos tablas MySQL idénticas

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;

Puede agregar más columnas en columnas where para verificar más información. Pruebe y vea si esto ayuda.