Live data from Hacker News

SQL: Select only rows with Max Value on a Column

stackoverflow.com

1–3 of 3 posts

Re: SQL: Select only rows with Max Value on a Column

#3
Or those who happen to be using a dialect of sql with window functions, selecting the rows where:

ROW_NUMBER() OVER(PARTITION BY Id ORDER BY Rev DESC) AS "Row Number"

Returns 1 is clearer to my mind, with some caveats around dialects which use separate forms of row-number that assign identical/differing numbers to two consecutive identical rows.