首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

添加有关问题成功 oracle根据表中的某个字段,按照这个字段把它分范围查询

2013-12-05 
添加问题成功 oracle根据表中的某个字段,按照这个字段把它分范围查询比如一张表:两个字段(id,money)。我要

添加问题成功 oracle根据表中的某个字段,按照这个字段把它分范围查询
比如一张表:两个字段(id,money)。
我要的结果是(根据money):
100—200的数据
200—400的数据
400—1000的数据

如何实现?
如果你的数据库支持wm_concat函数的话就好做很多:

select t1.data_rank, wm_concat(t1.id) id
  from (select id,
               t.money,
               case
                 when t.money >= 100 and t.money < 200 then
                  '100—200的数据'
                 when t.money >= 200 and t.money < 400 then
                  '200—400的数据'
                 when t.money >= 400 and t.money < 1000 then
                  '400—1000的数据'
                 else
                  '其他数据'
               end data_rank
          from test t) t1
 group by t1.data_rank;

如果数据库版本较低不支持:
select t2.data_rank, LTRIM(MAX(SYS_CONNECT_BY_PATH(T2.id, ',')), ',')
  from (select t1.id,
               t1.data_rank,
               row_number() over(partition by t1.data_rank order by t1.id) rn
          from (select id,
                       t.money,
                       case
                         when t.money >= 100 and t.money < 200 then
                          '100—200的数据'
                         when t.money >= 200 and t.money < 400 then
                          '200—400的数据'
                         when t.money >= 400 and t.money < 1000 then
                          '400—1000的数据'
                         else
                          '其他数据'
                       end data_rank
                  from test t) t1) t2
 START WITH T2.RN = 1
CONNECT BY PRIOR RN = RN - 1


       AND PRIOR T2.data_rank = t2.data_rank
 GROUP BY T2.data_rank
 order by data_rank


result as below:
添加有关问题成功 oracle根据表中的某个字段,按照这个字段把它分范围查询

热点排行