Trong Postgres 8.4 ... (thứ tự theo số chỉ là bí danh cho cột sắp xếp theo thứ tự)
select id,hash, max(id) over (partition by hash) h
from my_table order by 3 desc,1 desc;
HOẶC
select id,hash
from my_table order by max(id) over (partition by hash) desc,
id desc