Well, you'll need to use left joins because you're connecting tables where the org value doesn't exist in ALL tables, so the join must create NULL for the num columns for the tables in which a corresponding ORG value doesn't exist.
Code:
SELECT table1.ORG, table2.num1, table3.num2, table4.num3, table5.num4
FROM table1
LEFT JOIN table2 ON table1.org = table2.org
LEFT JOIN table3 ON table1.org = table3.org
LEFT JOIN table4 ON table1.org = table4.org
LEFT JOIN table5 ON table1.org = table5.org
Should do it, though you'll get NULL values, not zeros, for the numbers where the ORG value doesn't exist in the table.
Take care,
Nik
http://www.bigaction.org/