一、原始表结构:
ConstructionPropertyID | ConstructionObjectTypeID | ConstructionPropertyParamName | ConstructionPropertyParamValue |
---|---|---|---|
1 | 1 | 柱子长 | 1000 |
2 | 1 | 柱子高 | 800 |
3 | 1 | 砼级别 | C30 |
4 | 1 | 抗震等级 | 一 |
二、将第3列于第四列合并起来显示:
代码:
SELECT ConstructionPropertyID, ConstructionObjectTypeID, ''+ltrim(ConstructionPropertyParamName)+' :'+ltrim(ConstructionPropertyParamValue)+'' AS 项目特征
FROM ConstructionObjectProperty;
合并后的效果:
ConstructionPropertyID | ConstructionObjectTypeID | 项目特征 |
---|---|---|
1 | 1 | 柱子长:1000 |
2 | 1 | 柱子高:800 |
3 | 1 | 砼级别:C30 |
4 | 1 | 抗震等级:一 |