Hi all,
I have four tables with identical fields that I would like to combine into one master table. What is the easiest way to do so?
From reading, it seems a UNION ALL might do the trick; not sure what I am doing incorrectly:
Select * from ECP1
Union All
Select * from ECP2
Union All
Select * from ECP3
Union All
Select * from ECP4
I keep getting the error:
"Syntax error in FROM clause"
I have four tables with identical fields that I would like to combine into one master table. What is the easiest way to do so?
From reading, it seems a UNION ALL might do the trick; not sure what I am doing incorrectly:
Select * from ECP1
Union All
Select * from ECP2
Union All
Select * from ECP3
Union All
Select * from ECP4
I keep getting the error:
"Syntax error in FROM clause"