I would recommend using the UNION function in SQL. That is,
SELECT column1, column2
FROM table1
UNION
SELECT column1, column2
FROM table2
That will append the rows from the second SELECT to the end of the first SELECT.
- - - - - - - - - - - - - - - - - - - - - - -
In God we trust, everything else we test.
|