Respuesta: como saber a que tabla pertenecen los registros En una consulta
(select 'tabla1' tabla, count(*) total from tabla1 where nombre= 'beto')
UNION
(select 'tabla2' tabla, count(*) total from tabla2 where nombre = 'beto')
UNION
(select 'tabla3' tabla, count(*) total from tabla3 where nombre = 'beto') |