Tagged Questions
1
vote
4answers
815 views
Efficient latest record query Postgresql
Alright I need to do a big query, but I only want the latest records.
For a single entry I would probably do something like
SELECT * FROM table WHERE id = ? ORDER BY date DESC LIMIT 1;
But I need ...