不建议在数据库层面做,你应该将所有记录查询出来后在代码层用map之类的容器实现,效率要高得多。如果非要在数据库层实现的话可以自连接后查询。
-- 不推荐SELECT * FROM my_table AS t1, my_table AS t2
WHERE t1.id=t2.id AND t1.time=t2.time
##需要区分年份吗?如果不需要的话这样写就可以了:select month(time),sum(amount) from table group by month(time)
##区分年份
select month(time),sum(amount) from table group by extract(year_month from time)
望采纳……
select 字段a, min(字段b) as min_b, max(字段b) as max_b from tblname group by 字段a
order by 字段a
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)