使用分析函数后如何将行放在一起
Posted
技术标签:
【中文标题】使用分析函数后如何将行放在一起【英文标题】:How to get rows together after using analytic function 【发布时间】:2016-10-11 13:58:48 【问题描述】:create table xyz ( contrno number , mobile number primary key);
insert into xyz values(1003288127,123456);
insert into xyz values(1003288127,123457);
insert into xyz values(1003288127,123458);
insert into xyz values(1003288127,123459);
insert into xyz values(1003288127,123450);
insert into xyz values(1003288127,123451);
insert into xyz values(1003288127,123452);
insert into xyz values(1003288127,123453);
insert into xyz values(1003288127,123454);
insert into xyz values(1003288127,123455);
我希望行应该按 contrno 计数的降序排列,并且所有 contrno 行应该在一起,这意味着 rownum 应该是连续的, 我已经写了这个查询
select c.*
from xyz c
order by count(c.contrno) over ( partition by c.contrno ) desc) t
它根据正确但不是所有 contrno 一起的 contrno 计数来排列行
但是当我通过下面的查询查询rownum时
select k.* from (select rownum rn ,t.* from(select c.*
from xyz c
order by count(c.contrno) over ( partition by c.contrno ) desc) t ) k
where k.contrno=1003288127
输出是
rn contrno
1 51024 1003288127
2 51025 1003288127
3 51089 1003288127
4 51090 1003288127
5 51091 1003288127
6 51092 1003288127
7 51093 1003288127
8 51094 1003288127
9 51095 1003288127
10 51096 1003288127
11 51097 1003288127
因此,如果您在 51024 和 51025 之后看到,则 51089 正在启动,而在 51025 和 51089 之间,其他控制即将到来。
请回答为什么会发生这种情况以及如何编写可以根据顺序 rownum 给出输出的查询
【问题讨论】:
我没有得到这部分 所以如果你在 51024 和 51025 之后看到,51089 正在开始,并且在 51025 和 51089 之间,其他控制即将到来。 在51025
和51089
结果中什么都没有
这些表有数百万条记录我想根据 contrno 的计数来排列记录并将所有行放在一起,但实际上当两个或多个 contrno 的计数相同时,基于 contrno 的数据不会聚集在一起,所以在这里,如果您在 rownum 51024 和 51025 之后直接看到 51089 正在启动,并且在 51025 和 51089 之间,其他控制即将到来。我希望它应该是 51026 并像这样继续。
【参考方案1】:
如果我理解正确,您想先按计数排序,然后按控制:
order by count(c.contrno) over ( partition by c.contrno ) desc, c.contrno
甚至可以通过移动设备
order by count(c.contrno) over ( partition by c.contrno ) desc, c.contrno, c.mobile
【讨论】:
先按计数,然后按控制以上是关于使用分析函数后如何将行放在一起的主要内容,如果未能解决你的问题,请参考以下文章
Oracle SQL Developer:如何使用 PIVOT 函数将行转置为列