就是多表查询出来多条数据,想要求其中几个字段的总和,应该怎么写呢?

如题所述

第1个回答  2012-11-27
select0count(a.字段1),count(b.字段2).....from tab1 a ,tab2 b group by 字段1,字段2追问

那么把count()换成sum()也可行吗?

第2个回答  2012-11-27
select sum(a.col1). sum(b.col2) from tab1 a,tab2 b where group by 12;
相似回答