sql语句,按年度查询循环查询一到十二月的汇总表,那位高手帮我写一个例子啊????
发布网友
发布时间:2022-04-11 17:20
我来回答
共2个回答
热心网友
时间:2022-04-11 18:50
假如数据库表:你的费用表
数据字段: 用户, 费用, 日期
select 用户, sum(费用), year(日期), month(日期) from
( select 用户, 费用, 日期 from 你的费用表 where 用户 ='你给定的值' ) ttt group by 用户,year(日期), month(日期)
热心网友
时间:2022-04-11 20:08
select * from Table
where <condition=condition>
group by Year,Month;