You make a new query, design view, add no tables. And use below for SQL. Save.
This will repeat lines
Select * from Table1
Union all
Select * from Table2
Union all
Select * from Table3
Union all
Select * from Table4
This will only be unique lines.
Select * from Table1
Union
Select * from Table2
Union
Select * from Table3
Union
Select * from Table4