houstonbill
Technical User
- Nov 6, 2006
- 92
I have 2 tables I am trying to joing. tblOpenCases has 32 columns and tblClosedCases has 30 columns, which match 30 of the 32 columns in OpenCases. Without having to spell out all the columns, I first tried the below SQL:
SELECT * FROM tblClosedCases
UNION SELECT * FROM tblOpenCases;
With this I get an error indicating the number of columns do not match. I tried differnt variations but none seem to work. Assistance on getting this to work in the simplest format would be much appreciated.
SELECT * FROM tblClosedCases
UNION SELECT * FROM tblOpenCases;
With this I get an error indicating the number of columns do not match. I tried differnt variations but none seem to work. Assistance on getting this to work in the simplest format would be much appreciated.