I have two tables. One is a large ODBC table in which I only want to extract the data when the modification date is greater than the last date of another table.
The SQL for what I want to achieve is simple ; SELECT * FROM table1
WHERE modwhen > (SELECT MAX(modwhen1) FROM table2);
Any help is appreciated.
Thank you,
Â
Â