Skip to content
Advertisement

SQL Server Multiple Rows into One row

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

enter image description here

Need the rows to be combined as follows

enter image description here

How can this be achieved?

Advertisement

Answer

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.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement