Select MAX time from multiple tables I have 2 tables:
deposit
withdraw
each table has a column named, updatetime, which is a timestamp type.
How would I use a single select to pull the most recent updatetime
from either table?
i.e., select max(updatetime) from deposit,withdraw;
Thanks,
Erob |