Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
205 views
in Technique[技术] by (71.8m points)

postgresql - SQL: Cluster similar values of column B, yet "order" by column A

Let's say I have a table with two columns, id and hash:

id     | hash
------------------
1      | bb
2      | aa
3      | aa
4      | bb

I need to order them by id (descending), yet group all the rows that have the same value. An algorithm that did this would be for example:

  • Gather into disjunct subsets the table so that the columns for which hash is the same are together.
  • Sort the subsets by the their maximum id, descending.
  • The subsets rows may optionally be sorted by id, descending.

The result would be

id     | hash
------------------
4      | bb
1      | bb
3      | aa
2      | aa

Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In Postgres 8.4...(order by number is just an alias for the column to order by)

select id,hash, max(id) over (partition by hash) h
   from my_table order by 3 desc,1 desc;

OR

select id,hash
from my_table order by max(id) over (partition by hash) desc,
id desc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...