0

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?

1 Answer 1

2

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.