tableA
col1 col2 ...
 1    2   ...
 3    4   ...tableB
col1 col2 ...现在要
update tableB set col1 = (select sum(col1) from tableA where ...)
                  col2 = (select sum(col2) from tableA where ...)
where ...可不可以不用中间变量 又只进行一次select完成这件事情