table_source
PIVOT(
聚合函数(value_column)
FOR
pivot_column
IN(<column_list>)
)
对于一个字段的汇总和转置,只用一次。
) tb pivot(max(copies) for ORDER_TYPE in ([11],[12],[13],[14])) tb
对于多个字段的汇总和转置,要嵌套多次。
) tb pivot(max(copies) for ORDER_TYPE in ([11],[12],[13],[14])) tb
) tb1 pivot(max(price) for order_type1 in ([11],[12],[13],[14])) tb1
) tb2 pivot(max(amt) for order_type2 in ([11],[12],[13],[14])) tb2
时间: 2024-10-18 01:25:27