旋转时转义字符[%]和空格返回null

时间:2013-12-17 12:46:29

标签: sql pivot

发现另一个问题。脚本运行但返回null

我使用以下方法进行数据透视(引用是由于语句包含在exec语句中)

max(case when Name = ''[COutputData_2_Best class match]'' then value end) COutputData_2_Best_class_match,
max(case when Name = ''[COutputData_2_Magnesium Stearate [%]]]'' then value end) COutputData_2_Magnesium_Stearate_percentage

两列的结果都是null?

1 个答案:

答案 0 :(得分:0)

只需使用以下

即可
max(case when Name = ''COutputData_2_Best class match'' then value end) COutputData_2_Best_class_match,
max(case when Name = ''COutputData_2_Magnesium Stearate [%]'' then value end) COutputData_2_Magnesium_Stearate_percentage