select from table1 union select from table2;
[edit] Oh, should just add that this will automatically merge duplicate records, if you don't want that you say UNION ALL, like
select from table1 union all select from table2;
And if you want to use an order by you have to put the select queries in brackets like
(select from table1) union (select from table2) order by foo;