
July 6th, 1999, 05:31 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Since MySQL doesn't yet support UNION, I found that I have to do a bit of fakery to accomplish this. I create a third table with the same attributes as the first two tables. Then issue "insert into table3 select * from table1;" and "insert into table3 select * from table2;". Then "select * from table3;" gives me all of the records.
Don
|