嗨我有一个如上图所示的表结构,我需要将几列计数到单个列中,例如
octSecAndthrd1
octSecAndthrd2
octSecAndthrd3
octSecAndthrd4
将这些列计为单列命名为(Column1)同样明智
最终输出应为:
ID | Column1 |列2
任何想法?
答案 0 :(得分:2)
select id
, sum(octSecAndthrd1 + octSecAndthrd2 + octSecAndthrd3 + octSecAndthrd4) col1
, sum(octSecAndthrd5 + octSecAndthrd6 + octSecAndthrd7 + octSecAndthrd8) col2
from ...