欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sql:统计(group by)

程序员文章站 2022-05-08 14:29:11
...

1、sum和group by 

select s.CreateTime,sum(Value) from (
SELECT
a.CreateTime CreateTime,
a.`Value` Value
FROM
	lubri_log a) s
GROUP BY s.CreateTime

sql:统计(group by)

相关标签: Mysql/Oracle