0

我正在编写一份报告,我必须在其中显示具有 6 级子层次结构的类别。

说得好理解:多个类别,这个类别中的每一个都有多个属性,这些属性中的每一个都可以有多个子属性,这些子属性可以有子属性等等。

选择语句结果如下所示:

ModellID | ModellName| ParentLevelID | LevelID | LevelName | ParentAttributeID | AttributeID | AttributeName

报告应如下所示:

             Level 1       Level 2   Level 3   Level 4 ...
Modell A | Attribute A | Child A | Child A |         |
         |             |         | Child B | Child A |
         |             |         |         | Child B |
         |             | Child B | Child A |         |
         | Attribute B | Child A |         |         |
         | Attribute C | Child A | Child A |         |
         |             |         | Child B |         |
         |             |         | Child C |         |
         |             | Child B | Child A |         |
Modell B | Attribute A | Child A | Child A | Child A |
         |             |         |         | Child B |

我尝试制作一个以类别为行组、级别为列组、以属性为值的矩阵,但这仅显示每个类别的第一条记录。

我还尝试了在谷歌的帮助下找到的多个建议,但我无法让它们发挥作用。

非常感谢任何帮助或建议!

示例数据:

Create Table hierarchy_ssrs (
    ModellID uniqueidentifier,
    ModellName varchar(max),
    ParentLevelID uniqueidentifier,
    LevelID uniqueidentifier,
    LevelName varchar(max),
    ParentAttributeID uniqueidentifier,
    AttributeID uniqueidentifier,
    AttributeName varchar(max)
)

https://dl.dropboxusercontent.com/u/108638325/Example_Data.xlsx

您可以通过 SQL Management Studio 导入数据。右键单击数据库 -> 任务 -> 导入数据 -> 数据源:MS Excel -> 浏览文件 -> ...进一步的步骤应该是不言自明的。

提前致谢!

4

1 回答 1

0

我找到了解决我的问题的方法。

对于数据集,我使用了一个 select 语句并将该表与自身连接了多次。在报表生成器中,我使用选择语句列作为表中的列创建了一个表。之后我为每一列创建了一个行分组并删除了相应的旧列。

这是select语句的sql代码。

select hs1.ModellName as Modell, 
    hs1.AttributeName as [Level 1],
    hs2.AttributeName as [Level 2],
    hs3.AttributeName as [Level 3],
    hs4.AttributeName as [Level 4],
    hs5.AttributeName as [Level 5],
    hs6.AttributeName as [Level 6]
from hierarchy_ssrs hs1
    left join hierarchy_ssrs hs2 on hs2.ParentAttributeID = hs1.AttributeID
    left join hierarchy_ssrs hs3 on hs3.ParentAttributeID = hs2.AttributeID
    left join hierarchy_ssrs hs4 on hs4.ParentAttributeID = hs3.AttributeID
    left join hierarchy_ssrs hs5 on hs5.ParentAttributeID = hs4.AttributeID
    left join hierarchy_ssrs hs6 on hs6.ParentAttributeID = hs5.AttributeID
where hs.ParentAttributeID is null
order by Modell,
    LevelName,
    [Level 1],
    [Level 2],
    [Level 3],
    [Level 4],
    [Level 5],
    [Level 6]
于 2013-09-12T06:56:05.590 回答