Союз и Союз все
select null
union all
select null
Delightful Dolphin
select null
union all
select null
UNION: only keeps unique records
UNION ALL: keeps all records, including duplicates
SELECT City FROM student
UNION
SELECT City FROM student2
SELECT City FROM student
UNION ALL
SELECT City FROM student2