简体   繁体   中英

SQL Server Multiple Rows into One row

I have a table with lot of records. I provided a sample of 1 record (4 rows)

在此处输入图像描述

Need the rows to be combined as follows

在此处输入图像描述

How can this be achieved?

You can use aggregation:

select col1, max(col2), max(col3), max(col4)
from t
group by col1;

Note that the data you describe sounds like it comes from an aggregation query. Usually this is more easily fixed by fixing that query and fixing the group by keys.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM