按日,周,年统计,无的数据补充0

需求:按日-周-年统计。统计涉及到3张表数据。
在这里插入图片描述在这里插入图片描述

写sql。先把3张表数据摘取出来,只需对3张表的时间做分组统计即可。
在这里插入图片描述
按日统计

select DAY(dateff) as time,IFNULL(count(id),0)as num
from(select create_time as dateff,id as id from cz_taxi_orders UNION ALL
select create_time as dateff,id as id from ctky_passenger_transport_order UNION ALL
select pay_time as dateff,id as id from bus_order) as a
GROUP BY time

按年统计

#按年 需求:统计最近十年数据
select YEAR(dateff) as time,IFNULL(count(id),0)as num
from(select create_time as dateff,id as id from cz_taxi_orders UNION ALL
select create_time as dateff,id as id from ctky_passenger_transport_order UNION ALL
select pay_time as dateff,id as id from bus_order) as a
WHERE YEAR(dateff)>year(now())-10
GROUP BY time

按周统计

select 
CASE temp.time 
WHEN 1 THEN '星期一' 
WHEN 2 THEN '星期二' 
WHEN 3 THEN '星期三' 
WHEN 4 THEN '星期四' 
WHEN 5 THEN '星期五' 
WHEN 6 THEN '星期六' 
WHEN 7 THEN '星期天' 
end as time,
IFNULL(temp2.num,0) as num 
from(
select 1 as time UNION all
SELECT 2 UNION all
SELECT 3 UNION all
SELECT 4 UNION all
SELECT 5 UNION all
SELECT 6 UNION all
SELECT 7) as temp
LEFT JOIN 
(select ifNULL(count(id),0) as num, 
CASE WEEKDAY(dateff) 
WHEN 0 THEN '1' 
WHEN 1 THEN '2' 
WHEN 2 THEN '3' 
WHEN 3 THEN '4' 
WHEN 4 THEN '5' 
WHEN 5 THEN '6' 
WHEN 6 THEN '7' 
END as `time` 
from(
SELECT create_time as dateff,id as id FROM cz_taxi_orders UNION ALL
SELECT create_time as dateff,id as id FROM ctky_passenger_transport_order UNION ALL
SELECT pay_time as dateff,id as id FROM bus_order) as a 
GROUP BY `time`) as temp2
ON temp.time = temp2.time 
ORDER BY temp.time asc;

组装动态sql。

<select id="queryPassengerFlow" resultType="com.xxxCockpitPassengerFlowChartVo"><if test="type=='WEEK'">selectCASE temp.timeWHEN 1 THEN '星期一'WHEN 2 THEN '星期二'WHEN 3 THEN '星期三'WHEN 4 THEN '星期四'WHEN 5 THEN '星期五'WHEN 6 THEN '星期六'WHEN 7 THEN '星期天'end as time,IFNULL(temp2.num,0) as numfrom(select 1 as time UNION all select 2 UNION allselect 3 UNION all select 4 UNION allselect 5 UNION all select 6 UNION allselect 7) as tempLEFT JOIN(select ifNULL(count(id),0) as num,CASE WEEKDAY(dateff)WHEN 0 THEN '1'WHEN 1 THEN '2'WHEN 2 THEN '3'WHEN 3 THEN '4'WHEN 4 THEN '5'WHEN 5 THEN '6'WHEN 6 THEN '7'END as `time`</if><if test="type=='DAY'">select count(id) as num,DAY(dateff) as `time`</if><if test="type=='YEAR'">select YEAR(dateff) as `time`,count(id) as num</if>from(select create_time as dateff,id as id from cz_taxi_orders UNION ALLselect create_time as dateff,id as id from ctky_passenger_transport_order UNION ALLselect pay_time as dateff,id as id from bus_order) as a<if test="type=='WEEK'">GROUP BY `time`) as temp2on temp.time = temp2.timeORDER BY temp.time asc</if><if test="type=='DAY'">GROUP BY `time`</if><if test="type=='YEAR'">WHERE (YEAR(dateff))>year(now())-10GROUP BY `time`</if></select>

剩余的年,日,用java代码补充。

@Overridepublic R queryPassengerFlow(String type) {//一开始加载,不输入默认按天if (type==null){type="DAY";}List<CockpitPassengerFlowChartVo> list = cockpitChartMapper.queryPassengerFlow(type);List<CockpitPassengerFlowChartVo> list1 = new ArrayList<>();//年查询递推十年List<CockpitPassengerFlowChartVo> list2 = new ArrayList<>();if ("YEAR".equals(type)){Calendar cal = Calendar.getInstance();int currentYear = cal.get(Calendar.YEAR);cal.set(Calendar.YEAR,currentYear-9);int toYear = cal.get(Calendar.YEAR);for (int i = currentYear; i >= toYear; i--) {CockpitPassengerFlowChartVo vos = new CockpitPassengerFlowChartVo();boolean flag = false;for (CockpitPassengerFlowChartVo vo : list) {if (vo.getTime().equals(String.valueOf(i))) {flag = true;//月份vos.setTime(vo.getTime());//数量vos.setNum(vo.getNum());}}//月份不存在 赋值0if (!flag) {vos.setTime(String.valueOf(i));vos.setNum(0);}list1.add(vos);}return R.ok(list1);}if ("DAY".equals(type)){for (int i = 1; i <=30 ; i++) {CockpitPassengerFlowChartVo vos = new CockpitPassengerFlowChartVo();boolean flag = false;for (CockpitPassengerFlowChartVo vo : list) {if (vo.getTime().equals(String.valueOf(i))) {flag = true;//月份vos.setTime(vo.getTime());//数量vos.setNum(vo.getNum());}}//月份不存在 赋值0if (!flag) {vos.setTime(String.valueOf(i));vos.setNum(0);}list2.add(vos);}return R.ok(list2);}return R.ok(list);}

成功,接下来就是和前端规定type按日传DAY,按周传WEEK,按年传YEAR。
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/19228.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【雕爷学编程】Arduino动手做(113)---5110液晶屏模块2

37款传感器与执行器的提法&#xff0c;在网络上广泛流传&#xff0c;其实Arduino能够兼容的传感器模块肯定是不止这37种的。鉴于本人手头积累了一些传感器和执行器模块&#xff0c;依照实践出真知&#xff08;一定要动手做&#xff09;的理念&#xff0c;以学习和交流为目的&am…

三分钟了解 SpringBoot 的启动流程

一、前言 背景&#xff1a;最近有位开发同学说面试被问到Spring Boot 的启动流程&#xff0c;以及被问到Spring Boot 的嵌入式Web容器是什么时候加载的。如何加载的。是怎么无缝切换的。 这些问题&#xff0c;其实回答起来也是比较复杂的。我们今天就从 SpringApplication.ru…

【Java】面向对象基础 之 接口

1、接口 在抽象类中&#xff0c;抽象方法本质上是定义接口规范&#xff1a;即规定高层类的接口&#xff0c;从而保证所有子类都有相同的接口实现&#xff0c;这样&#xff0c;多态就能发挥出威力。 如果一个抽象类没有字段&#xff0c;所有方法全部都是抽象方法&#xff1a; …

Python第二天之容器学习

1.List 容器无非就增删改查 1.添加 name_list [aaa,bbb,ccc,ddd] name_list.append(b1) name_list.insert(1,xxx) print(name_list)append 是在后面追加 而insert是自己定义下表插入 name_list [aaa,bbb,ccc,ddd] name_list2 [qqq,222,111] name_list.extend(name_list…

Web APls-day05

(创作不易&#xff0c;感谢有你&#xff0c;你的支持&#xff0c;就是我前行的最大动力&#xff0c;如果看完对你有帮助&#xff0c;请留下您的足迹&#xff09; Window对象 BOM BOM(Browser Object Model ) 是浏览器对象模型 window对象是一个全局对象&#xff0c;也可以说是…

运维面试题

这里写目录标题 TCP介绍一下UDP TCP介绍一下 TCP&#xff08;Transmission Control Protocol&#xff0c;传输控制协议&#xff09;是一种面向连接的、可靠的传输层协议。它在计算机网络中负责提供可靠的数据传输和流量控制。 TCP通过使用三次握手建立一个连接&#xff0c;确…

leaflet在天地图上添加poi兴趣点

前言 书接上节&#xff0c;在上一篇博客加载的天地图的基础上&#xff0c;加载poi兴趣点。 上节传送&#xff1a;使用leaflet在html中加载天地图且去掉左上角的缩放图标以及右下角的logo 一、加载poi的方法 leaflet通过 L.marker 方法用来加载poi&#xff0c;我们只需填入p…

python接口自动化(三十)--html测试报告通过邮件发出去——中(详解)

简介 上一篇&#xff0c;我们虽然已经将生成的最新的测试报告发出去了&#xff0c;但是MIMEText 只能发送正文&#xff0c;无法带附件&#xff0c;因此我还需要继续改造我们的代码&#xff0c;实现可以发送带有附件的邮件。发送带附件的需要导入另外一个模块 MIMEMultipart。还…

使用Yfinance和Plotly分析金融数据

大家好&#xff0c;今天我们用Python分析金融数据&#xff0c;使用Yfinance和Plotly绘制图表&#xff0c;带你了解在Python中使用Plotly制作图表&#xff0c;利用Plotly强大的图表功能来分析和可视化金融数据。 导语 在本文中&#xff0c;我们将深入研究Plotly&#xff0c;从…

Nginx系列之 一 入门

目录 一、Nginx概述 二、yum安装 三、nginx.conf配置文件详解 3.1 全局块 3.2 events 块 3.3 HTTP 块 四、Nginx 常用命令 五、Nginx代理 4.1 正向代理 4.2 反向代理 六、Nginx的Master-Worker模式 6.1 Master进程的作用是&#xff1f; 6.2 Worker进程的作用是&am…

【无标题】采用技术外包做项目开发,不得不说的四大注意事项

在进行多项目开发及多个研发供应商团队管理&#xff08;技术外包管理&#xff09;时&#xff0c;你是不是也遇到不少问题。 项目管理者A&#xff1a;在项目开发中聘用外包技术团队的过程中&#xff0c;我踩过太多的坑&#xff0c;换过一批又一批的供应商&#xff0c;之前遇到过…

【分布式应用】ELK 企业级日志分析系统

目录 一、ELK概述1.1、ELK 简介1.2 为什么要使用 ELK1.3完整日志系统基本特征1.4 ELK 的工作原理 二、ELK Elasticsearch 集群部署2.1环境准备2.2&#xff0e;部署 Elasticsearch 软件2.3安装 Elasticsearch-head 插件&#xff08;1&#xff09;编译安装 node&#xff08;2&…