I have a number of tables that need to be joined to gether and up to now everything has been fine. I now need to exclude old files that are identified by a sequence number; newer records have a higher number.
The joins currently look like this:
Code:
FROM a INNER JOIN b ON(a.resource_id = b.resource_id) INNER JOIN c ON(a.resource_id = c.apar_id) INNER