22,294
社区成员
发帖
与我相关
我的任务
分享
2008没有啥用不了的语句,你所谓的用不了是啥意思?insert into 收费列表(序号,编号,实收金额)
select 序号, 编号, sum(金额)
from 收费数据
group by 序号, 编号
insert into收费列表(序号,编号,实收金额)
select 序号, 编号, sum(金额)
from 收费数据
group by 序号, 编号insert into 收费列表(序号,编号,实收金额)
select 序号,编号,SUM(金额)
from 收费数据
group by 序号,编号insert into TB2(序号,编号,实收金额)
select 序号,编号,SUM(金额)
from tb1
group by 序号,编号