需要对此输入和输出的SQL查询

时间:2017-06-23 06:37:16

标签: sql pivot

需要针对以下内容的SQL查询:

输入:

enter image description here

输出:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用聚合

Select id,
  max(col1) as col1,
  max(col2) as col2,
  ...
From your_table
Group by id;