无法在SQL

时间:2015-10-20 12:51:52

标签: sql

问题陈述:

在Sql中我尝试使用数据透视查询获取图像2中提到的结果集,但我没有得到所需的结果。如果任何人提供建议,那将会很棒。

图片1 :(当前结果集)

enter image description here

图片2:所需的输出

enter image description here

1 个答案:

答案 0 :(得分:1)

你可以group by col1。

select col1, max(col2), max(col3), max(col4), max(col5)
from tablename --or query that produces the current resultset
group by col1