SQL Server: Examples of PIVOTing String data(SQL Server:透视字符串数据的示例)
问题描述
试图找到一些简单的 SQL Server PIVOT 示例.我发现的大多数例子都涉及对数字进行计数或求和.我只想旋转一些字符串数据.例如,我有一个返回以下内容的查询.
Trying to find some simple SQL Server PIVOT examples. Most of the examples that I have found involve counting or summing up numbers. I just want to pivot some string data. For example, I have a query returning the following.
Action1 VIEW
Action1 EDIT
Action2 VIEW
Action3 VIEW
Action3 EDIT
我想使用 PIVOT(如果可能的话)来产生这样的结果:
I would like to use PIVOT (if even possible) to make the results like so:
Action1 VIEW EDIT
Action2 VIEW NULL
Action3 VIEW EDIT
这是否可以通过 PIVOT 功能实现?
Is this even possible with the PIVOT functionality?
推荐答案
请记住,MAX 聚合函数将适用于文本和数字.这个查询只需要扫描一次表.
Remember that the MAX aggregate function will work on text as well as numbers. This query will only require the table to be scanned once.
SELECT Action,
MAX( CASE data WHEN 'View' THEN data ELSE '' END ) ViewCol,
MAX( CASE data WHEN 'Edit' THEN data ELSE '' END ) EditCol
FROM t
GROUP BY Action
这篇关于SQL Server:透视字符串数据的示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL Server:透视字符串数据的示例
基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01