Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

pivot - Create a SQL query that merges rows

I have a table that stores the dates when an order was opened and closed. It's similar to this:

id orderID status date
1 1 opened 2020-01-01
2 1 closed 2020-01-05
3 2 opened 2020-01-02

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should get a syntax error, because the select columns are inconsistent with the group by. Use aggregation:

SELECT orderId,
       MAX(CASE WHEN status = 'opened' THEN date END) AS openedDate,
       MAX(CASE WHEN status = 'closed' THEN date END) AS closedDate
FROM orders
GROUP BY orderId;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...