It depends on how you relate the 2 tables...with the date?
Or are the id field values the same?
Well...i presume the id fields are the same now:
SELECT table1., table2. FROM table1, table2 WHERE table1.id = table2.id ORDER BY yourorder
or
SELECT table1., table2. FROM table1, table2 LEFT OUTER JOIN table2 AS table2_1 ON table1.id = table2.id WHERE yourtable.yourcriteria = yourvalue GROUP BY yourtable.yourgroupingfield ORDER BY yourtable.yourorder
i hope that helps