If both tbl1 and tbl2 have the same structure, you could use UNION. select * from tbl1 UNION select * from tbl2; But if they have different structures and you want to retrieve columns from both tables in a single row, then it may not be possible to do this without using a join.