Code:select name, sal, last_update_date from (select name, sal, last_update_date, row_number() over (partition by name order by last_update_date desc) as rn from my_table ) where rn = 1;
|
Results 1 to 4 of 4
Thread: last_updated_date columnThreaded View
|
Click Here to Expand Forum to Full Width |