I want to return the row with the highest create_dt value. This works great, however, I would like to know if there is a better way to do this?
select * from
table1
where job_no='101047'
and
create_dt in
(select max(create_dt) from
table1 where job_no='101047')
source
share