J
jdeming
Guest
Hello,
Could someone tell me how to combine the following three statements into one and still get the same results returned.
SELECT column1,column2,column3 FROM tbl1987 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1988 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1989 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1990 WHERE column1 =1234;
The value 1234 may or may not be found in all of the tables. I hope this is clear. Thanks in advance.
Justin
Could someone tell me how to combine the following three statements into one and still get the same results returned.
SELECT column1,column2,column3 FROM tbl1987 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1988 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1989 WHERE column1 =1234;
SELECT column1,column2,column3 FROM tbl1990 WHERE column1 =1234;
The value 1234 may or may not be found in all of the tables. I hope this is clear. Thanks in advance.
Justin