If you want to keep duplicate records in the result, you need to use UNION ALL instead of UNION. By defaults, UNION operator removes all duplicate records.
E.g.
SELECT a,b,c FROM table1UNION ALLSELECT a,b,c FROM table2
SELECT a,b,c FROM table1
UNION ALL
SELECT a,b,c FROM table2