我们可以在mysql表中得到几个具有整数的列的总和吗?
A B C D
1 0 2 3
我需要获得所有列的总和。我有一排。
答案 0 :(得分:2)
然而,似乎数据模型很尴尬,
select a+b+c+d
from ...
where ...
答案 1 :(得分:1)
select suma+sumb+sumc+sumd from
(select sum(A) as suma,sum(B) as sumb,sum(C)as sumc,sum(D) as sumd
from tab) mytab