SQL Server:查询多行,返回一行

SQL Server : Querying Multiple Rows, Returning In One(SQL Server:查询多行,返回一行)
本文介绍了SQL Server:查询多行,返回一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

问题
我们目前正在处理一些存储在下面的屏幕截图中的数据.我们使用它在 C# 应用程序中显示信息.我们让应用程序根据需要工作的唯一方法是将信息放在一行中.

我们在

SQL Server:动态透视 5 列

透视动态列,无聚合

https://www.simple-talk.com/blogs/2007/09/14/pivots-with-dynamic-columns-in-sql-server-2005/

SQL Server 动态 PIVOT 查询?

SQL Server 中的动态枢轴列

使用动态列的 SQL Pivot 查询

Problem
We are currently working with some data which is stored as in the screenshot below. We are using this to display information in a C# application. The only way we can get the application to work as needed is to have the information in one single row.

We have tried some methods on Display multiple rows and column values into a single row, multiple column values to no avail.

Desired output
We require each row with the same date and vehicleID to be on the same row to be output from our stored procedure.

Any help would be greatly appreciated. Cheers.

解决方案

if I understood correctly, you don't know how many unique date/vehicle_id combinations there are in the data. hence you can't just do a pivot over a set list of values.

in this case, you would need to build up a list of the date/vehicle ids dynamically, and then pivot over that list.

please check out the following examples involving dynamic SQL and pivot tables:

PIVOT in sql 2005

SQL Server : dynamic pivot over 5 columns

Pivot Dynamic Columns, no Aggregation

https://www.simple-talk.com/blogs/2007/09/14/pivots-with-dynamic-columns-in-sql-server-2005/

SQL Server dynamic PIVOT query?

Dynamic Pivot Columns in SQL Server

SQL Pivot Query with Dynamic Columns

这篇关于SQL Server:查询多行,返回一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
SQL query to group by day(按天分组的 SQL 查询)
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)