Basically what you gotta do is to join two tables just like you join them with select command...
SELECT *
FROM table1 t1, table2 t2, WHERE t1.id = t2.id;
you can also specify which columns you want in your new table;
SELECT t1.title, t1.address, t2.name, t2.age
FROM table1 t1, table2 t2, WHERE t1.id = t2.id;
