CREATE TABLE new_table SELECT * from old_table1 UNION SELECT * from old_table2;
Note that if you have an autoincrement PK in old_tables the new table will not have a PK. You must then add it using ALTER TABLE. If there are dublicates you may need to drop the PK-column and recreate it.