如下
select a from ta
union
select a from tb
我是想直接求 这两个的总和 目前只能一个一个的求之后再加起来 有没有可以用一条语句进行直接计算
如果表之间有关联,可以用
select ta.a+tb.a
from ta,tb where .....
不然就只能用这样的办法了。
select sum(a) from
(select a from ta
union
select a from tb) t
select sum(a) as result from
(select a from ta
union
select a from tb)a
就是上面的