log: 背景 统计数据,需要统计每天的数据量,然后再统计每个小时的数据量 SQL 按小时统计数量 ---按小时统计数据量SELECT count(id)as "会员数", DATE_FORMAT(created,"%Y-%m-%d %H:00:00") as "时间" from t_m_plat_member where card_plan_id =1000190001 and bi
按天统计 1、创建基础表 CREATE TABLE num (i INT);INSERT INTO num (i) VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);-- 测试表DROP TABLE IF EXISTS `user`;CREATE TABLE `user` (`id` int(11) NOT NULL AUTO_INCREMENT