Vue SQL où les tables ont le même nom de colonne combiner les résultats

SELECT table1.Column1, table1.Column2
FROM table1

UNION

SELECT table2.Column1, table2.Column2
FROM table2
Lazy Lemur