How are you matching up these two tables?
Do you want to have all the names from table 1 followed by all the names from table 2, unconnected in any way, or do you have the same names in both tables and want to join the information from the two tables against some "key" column?
To mush two columns one after the other, you can union them, like so (SQL92):
select from table1 union (select from table1);
if the name in each table is the same, you can match up the tables like this:
select * from table1, table2 where table1.name=table2.name;
where name is the column that matches up in each table.