I would like to join two tables with the same fields but they have leaders loaded in their tables. example
select folio,'ALUMNO' AS ent_sal, observaciones
from ALUMNO
where activo='0'
Y
select folio,'MATERIA' as ent_sal, observaciones
from MATERIA
where activo='0'
Want it to appear on a single table If someone please.