to get rows with max update time
I want to select only records with max of update time. Pls correct me if it is wrong...
Select * from V_ALL_AIRPORT t
where t.audit_update_time= (Select max(update_time) from V_ALL_AIRPORT where
airid=t.airid and secondryairid= t.secondaryid)