SQL分析函数 - 如何为分区分配编号?

时间:2011-05-30 11:56:51

标签: sql oracle analytic-functions

我正在使用Oracle。

假设我有一个包含此样本的表,随机,内容:

columnA     | columnB  | content
--------------------------------
AfBkxZ      | 292      | a
LDglkK      | 181      | b
AfBkxZ      | 51       | c
AfBkxZ      | 315      | d
LDglkK      | 808      | e
Cee89g      | 1        | f

我想在其中有一个视图,其中我对columnA中的每个值都有一个唯一的编号,并且在columnA具有该值的行内记录编号。

基于以上样本数据的结果:

Group_number | Record_number | columnB | content
------------------------------------------------
1            | 2             | 292     | a             (1.2)
3            | 1             | 181     | b             (3.1)
1            | 1             | 51      | c             (1.1)
1            | 3             | 315     | d             (1.3)
3            | 2             | 808     | e             (3.2)
2            | 1             | 1       | f             (2.1)

我可以使用record_number获取row_number() over (partition by columnA order by columnB asc)

如何获取group_number实际上是旧columnA的友好排序别名?

谢谢。

1 个答案:

答案 0 :(得分:5)

您可以使用dense_rank为columnA编号:

dense_rank() over (order by columnA)