登录
首页 >  数据库 >  MySQL

如何使用单个 SQL 查询获取 Oracle 数据库中不同时间段的数据?

时间:2024-10-30 22:22:12 410浏览 收藏

今天golang学习网给大家带来了《如何使用单个 SQL 查询获取 Oracle 数据库中不同时间段的数据?》,其中涉及到的知识点包括等等,无论你是小白还是老手,都适合看一看哦~有好的建议也欢迎大家在评论留言,若是看完有所收获,也希望大家能多多点赞支持呀!一起加油学习~

如何使用单个 SQL 查询获取 Oracle 数据库中不同时间段的数据?

合并多个 sql 查询以获取不同时间段的数据

在 oracle 数据库中,您需要合并以下三个 sql 查询以从单表中提取不同时间段的数据:

select count(1) as flownum from ccform_debit_all where cf_acctime > to_char(sysdate, 'yyyy-mm-dd');
select count(1) as flownummonth from ccform_debit_all where cf_acctime > to_char(sysdate, 'yyyy-mm');
select count(1) as flownumtotal from ccform_debit_all where cf_acctime > to_char(sysdate, 'yyyy');

要合并这些查询,请使用 case 表达式,如下所示:

select count(case when to_char(cf_acctime, 'yyyy-MM-dd') > to_char(sysdate, 'yyyy-MM-dd') then 1 end) as flowNum,
       count(case when to_char(cf_acctime, 'yyyy-MM') > to_char(sysdate, 'yyyy-MM') then 1 end)       as flowNumMonth,
       count(case when to_char(cf_acctime, 'yyyy') > to_char(sysdate, 'yyyy') then 1 end)             as flowNumTotal
from ccform_debit_all

这个合并查询将返回三列:flownum、flownummonth 和 flownumtotal,分别代表今天、本月和本年的流程数量。

今天关于《如何使用单个 SQL 查询获取 Oracle 数据库中不同时间段的数据?》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>