Just do a select as follows:
SELECT 1.column_name from table1 1, table2 2, table3 3, table4 4, where 4.id == 3.id
The numbers following the table names are references that can be used later. So if you want a column from table 4, you just put a "4." before the column you want to select. Hope this helps.