Here’s a simplified version of my problem Table 1 Key1, lastdate, lasttranstype
Table2 Table1key1, trandate, trantype
I want an SQL statement to update lastdate and lasttransdate on table1 for each record in that table using the matching record in Table2 with the latest date
My DB is progress.
Is this possible (I can of course write a program to do it but I'd rather do it just with an SQL statement)?