Crosstab Query in SQL Server 2000

我的未来我决定 提交于 2019-12-07 12:27:12

问题


I am hoping that someone has attempted this before and I can get some advice before I go any further.

I am looking to produce something similar to a crosstab query in sql-server 2000.

I have a table structure similar to the following:

Item       Item_Parameter      Parameter
id         item_id             id
desc       parameter_id        desc
           value

What I am looking to do is to flatten out the data through a query/stored procedure to make building reports easier.

The ideal solution would produce results such as:

             Parameter.desc[0]      Parameter.desc[1]      Parameter.desc[3]...
item.id[0]   Item_Parameter.value   Item_Parameter.value   Item_Parameter.value
item.id[1]   Item_Parameter.value   Item_Parameter.value   Item_Parameter.value   

回答1:


If you're sure there's at most one value for each parameter-item combination, you can use a simple group by:

select  item_id
,       max(case when parameter_id = 1 then value) Par1
,       max(case when parameter_id = 2 then value) Par2
,       max(case when parameter_id = 3 then value) Par3
from    item_paramenter
group by
        item_id

You can use min or avg instead of max: it shoulnd't matter because there's only one value for each parameter per item_id,

Without dynamic SQL, there is no way to return column names based on the description in the parameter table.




回答2:


I ended up using a stored procedure (http://www.sqlteam.com/article/dynamic-cross-tabs-pivot-tables) to create a sql statement dynamically.

Thanks Dan and Andomar



来源:https://stackoverflow.com/questions/3423743/crosstab-query-in-sql-server-2000

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!