select sum(销售数量) as 总销量 from 销售表
from 销售表 group by 客户
你是想插入1997年到2018年的数据是吗?用sql语句insert into 总量 (build_year,小计,detail_count) values (select * from (SELECT '2017' id UNION SELECT '2018') y join (select 小计,detail_count from 总量 where build_year='1996') l)
select a.id,sum(a.je),b.lxmc
from 财务表 a,分类表 b
where a.sylxid = b.id
group by a.id
2.
select a.date,sum(a.je)
from 财务表 a
group by a.date
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)