1

我正在尝试显示数据集中的单列,但分布在单行中。例如:

[Row1] [Row2] [Row3]
[Row4] [Row5] [Row6]

代替:

[Row1]
[Row2]
[Row3] etc.

数据集需要基于外部表中的列与另一个表连接,这意味着,AFAIK,交叉表是不可能的,因为您不能使用数据集参数。单个数据集中的行数没有限制,但我希望每行有 3 行列。

我可以修改数据集查询,但是我只能在这些查询中使用普通的旧 SQL,除了创建临时表或在服务器端创建任何“新”的东西——然而,一个仅 BIRT 的解决方案会更可取。

4

1 回答 1

1

如果您可以将查询更改为输出

1 1 [Row1]
1 2 [Row2]
1 3 [Row3]
2 1 [Row4]
2 2 [Row5]
2 3 [Row6]

到一个临时表中tmp,然后你可以使用类似的东西来查询它

select col1, col3 from tmp into tmp1 where col2 = 1;
select col1, col3 from tmp into tmp2 where col2 = 2;
select col1, col3 from tmp into tmp3 where col2 = 3;
select tmp1.col3, tmp2.col3, tmp3.col3 from tmp1, tmp2, tmp3 where tmp1.col1 = tmp2.col1 and tmp1.col1 = tmp3.col1;

您可以生成col1col2使用rownum,但它是非标准的,它需要对原始查询的输出进行正确排序。

编辑:

如果您不能使用临时表,我假设您可以使用子查询:

select tmp1.col3, tmp2.col3, tmp3.col3 from
  (select col1, col3 from (ORIGINAL_QUERY) where col2 = 1) as tmp1,
  (select col1, col3 from (ORIGINAL_QUERY) where col2 = 2) as tmp2,
  (select col1, col3 from (ORIGINAL_QUERY) where col2 = 3) as tmp3
where tmp1.col1 = tmp2.col1 and tmp1.col1 = tmp3.col1;

并希望优化器很聪明。

于 2012-12-19T22:06:45.477 回答