组合行以创建两列数据

时间:2015-01-28 19:57:08

标签: sql oracle oracle10g

我对如何正确执行此查询感到有点困惑。我有一张看起来像这样的桌子。其中0区代表应该应用于所有区域(全局)的值。

[ district ] [ code ] [ value ]
     1          A         11
     1          C         12
     2          A         13
     2          B         14
     0          B         15

我已经构建了一个查询(下面)来组合"全局值"在每个区。

[ district ] [ code ] [ district value ] [ global value ]
      1         A            11               null        -> row 1
      1         B           null               15         -> row 2
      1         C            12               null        -> row 3
      2         A            13               null        -> row 4
      2         B            14                15         -> row 5
      2         C           null              null        -> row 6 (optional)

我是通过加入所有可能的区/代码列表来实现的。

select all_code.district, all_code.code, table_d.value, table_g.value
  from (select distinct b.district, a.code
          from temp_table a
         inner join (select distinct district
                      from temp_table
                     where district <> 0) b
            on 1 = 1) all_code
  left join temp_table table_d
    on table_d.code = all_code.code
   and table_d.district = all_code.district
  left join temp_table table_g
    on table_g.code = all_code.code
   and table_g.district = 0

此查询效果很好,但看起来很难看。有没有更好的方法呢? (请注意,如果第6行存在与否,我不在乎。)

如果需要,这里有一个脚本。

create table temp_table
(
  district VARCHAR2(5) not null,
  code     VARCHAR2(5) not null,
  value    VARCHAR2(5) not null
);


insert into temp_table (district, code, value)
values ('1', 'A', '11');
insert into temp_table (district, code, value)
values ('1', 'C', '12');
insert into temp_table (district, code, value)
values ('2', 'A', '13');
insert into temp_table (district, code, value)
values ('2', 'B', '14');
insert into temp_table (district, code, value)
values ('0', 'B', '15');

2 个答案:

答案 0 :(得分:2)

以下是其中一个选项。由于你是10g,你可以使用分区外连接(partition by()子句)来填补空白:

with DCodes(code) as(
  select 'A' from dual union all
  select 'B' from dual union all
  select 'C' from dual
),
DGlobal(code, value1) as(
  select code
       , value
    from temp_table
   where district = 0
)
select tt.district
     , dc.code
     , tt.value
     , dg.value1 as global_value
  from temp_table tt
       partition by(tt.district)
       right join DCodes dc 
               on (dc.code = tt.code)
       left join DGlobal dg
              on (dg.code = dc.code)
 where tt.district != 0
 order by 1, 2

结果:

DISTRICT  CODE  VALUE  GLOBAL_VALUE
--------  ----  -----  ------------
1         A     11                 
1         B            15           
1         C     12                 
2         A     13                 
2         B     14     15           
2         C                       

答案 1 :(得分:1)

我认为很多&#34;丑陋&#34;来自缺少districtcode的查找表。如果没有这些权威来源,则必须根据正在使用的值制作一个(因此使用distinct的子查询)。

在清理您的查询方面,我能想到的最好的方法是删除不必要的子查询并使用正确的交叉连接语法:

SELECT   a.district,
         b.code,
         c.value1,
         d.value1
FROM     (SELECT DISTINCT district FROM temp_table WHERE district <> 0) a
         CROSS JOIN (SELECT DISTINCT code FROM temp_table) b
         LEFT JOIN temp_table c
            ON b.code = c.code AND a.district = c.district
         LEFT JOIN temp_table d
            ON b.code = d.code AND d.district = 0
ORDER BY district, code