I'm looking to return the row with biggest create_dt. This works fine, however I would like to know if there is a more proper way of doing this?
select * from
table1
where job_no='101047'
and
create_dt in
(select max(create_dt) from
table1 where job_no='101047')