yeah, I was just reading that, thanks....
That's not really what I'm looking for because I need the fields ordered by date. If there are two messages in table 1 and then 1 in table two and then 2 in table one again, the output should read:
table1 msg
table1 msg
table2 msg
table1 msg
table1 msg
make sense? What I think I'm going to have to do for this is create a temporary table that contains the dates, ids and table name. Afterward, I can order by the dates in the temporary table and then grab the contents from the table as specified in the temp table.