SQL Server 2016: how to get a single row view(SQL Server 2016:如何获取单行视图)
本文介绍了SQL Server 2016:如何获取单行视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直试图正确地表达这一点,但以下是我的dbfiddle
表:
Customerkey int NOT NULL PRIMARY KEY,
processdate date NULL,
CCcount int NULL,
CHKcount int NULL,
SACount int NULL
);
INSERT INTO products
(Customerkey, processdate, CCcount, CHKCount, SACount)
VALUES
(101,'20210501', 12,3,5),
(102,'20210203', 1,3,1),
(103,'20190412', 4,0,2)
SELECT CustomerKey, processdate,
ProductMix=STUFF
(
(
SELECT distinct ',' + str(CCcount) + ',' + str(CHKCount) + ',' + str(SACount)
FROM products t2
WHERE t2.CustomerKey = t1.CustomerKey
and t2.processdate = t1.processdate
),1,1,''
)
FROM products t1
GROUP BY CustomerKey, processdate
SELECT CustomerKey, processdate,
concat(
Case when CCcount >' ' then 'CCcount'
when CHKCount > '' then 'CHKCount'
when SACount > '' then 'SACount'
end, '') as Product_Mix_Expanded
from products
预期输出:
| CustomerKey | 处理日期 | Product_Mix | Product_Mix_Expanded |
|---|---|---|---|
| 101 | 2021-05-01 | 12,3,5 | CCcount、CHKCount、SACount |
| 102 | 2021-02-03 | 1,3,1 | CCcount、CHKCount、SACount |
| 103 | 2019-04-12 | 4,0,2 | 计数、存储计数 |
如您所见,我使用了一些东西,但不确定这是否是正确的方法。我需要的产品组合显示的计数和产品组合在文字格式扩展。 如果您需要更多的信息,请随时提问。提前谢谢您。
推荐答案
根据您的样本数据和预期结果,您是否可以执行以下操作?
select CustomerKey, ProcessDate, Concat(CCcount,',',CHKcount,',',SACount) Product_Mix,
Concat(case when CCcount>0 then 'CCcount' else '' end,', ',
case when CHKcount>0 then 'CHKcount' else '' end, ', ',
case when SACount>0 then 'SACount' else '' end) Product_Mix_Expanded
from products
这篇关于SQL Server 2016:如何获取单行视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:SQL Server 2016:如何获取单行视图
基础教程推荐
猜你喜欢
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在多列上分布任意行 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
