How to get the row with max timestamp in postgres? How to get the row with max timestamp in postgres? sql sql

How to get the row with max timestamp in postgres?


I would simply go for...

SELECT usr, event_dt FROM mytable ORDER BY event_dt DESC LIMIT 1