本文介绍了使用Sql查询的行到列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个表,列为
Cost Rate
Repair 12
Repair 223
Wear 1000
Wear 666
Fuel 500
Repair 600
Fuel 450
Wear 400
现在我希望此数据为
Repair Wear Fuel
825 2066 950
使用Sql查询
预先感谢
推荐答案
select sum(case when cost = 'Repair' then rate else null end) as Repair
, sum(case when cost = 'Wear' then rate else null end) as Wear
, sum(case when cost = 'Fuel' then rate else null end) as Fuel
from CostRateTable
这篇关于使用Sql查询的行到列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!