加入收藏 | 设为首页 | 会员中心 | 我要投稿 核心网 (https://www.hxwgxz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程 > 正文

tsql – SQL将行转换为列

发布时间:2021-01-13 10:05:15 所属栏目:编程 来源:网络整理
导读:我知道之前已经问了几次,但我找不到任何适合我的例子的解决方案. 我目前有一个用户权限表,可以使用某些页面.该表如下所示: UserID pagename pageid-----------------------------------1 home 11 contacts 33 home 12 links 2 如何根据此数据生成表格,其中所

我知道之前已经问了几次,但我找不到任何适合我的例子的解决方案.

我目前有一个用户权限表,可以使用某些页面.该表如下所示:

UserID    pagename         pageid
-----------------------------------
1         home             1
1         contacts         3
3         home             1
2         links            2

如何根据此数据生成表格,其中所有页面名称都列为列,表格的每一行都是用户ID,列值根据原始表格是否有条目显示0或1那个特定的页面,例如:

UserID     home     links    contacts
-------------------------------------
1          1        0        1
2          0        1        0
3          1        0        0

非常感谢您的帮助!

解决方法

在@t中构建表:
declare @t as table (UserID int,pagename nvarchar(20),pageid int);
insert into @t values (1,'home',1),(1,'contacts',3),(3,(2,'links',2);

透视它:

select UserID,case when home is null then 0 else 1 end as home,case when links is null then 0 else 1 end as links,case when contacts is null then 0 else 1 end as contacts
from @t
pivot (
    max(pageid) for pagename in ([home],[links],[contacts])
) pivotT

UserID      home        links       contacts
----------- ----------- ----------- -----------
1           1           0           1
2           0           1           0
3           1           0           0

(编辑:核心网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读