sql日期函数统计日月年订单数

场景:汇集日月年的订单数,分别在mysql和oracle数据库实现相同的效果

示例1:

sql 复制代码
--创建mysql测试表 
drop table test.test;
create table test.test
(
id bigint(20) NOT NULL AUTO_INCREMENT,
name varchar(50) DEFAULT NULL COMMENT '名称',
c_date date ,
PRIMARY KEY (`id`)
) CHARSET = utf8mb4 COMMENT = '测试表';

insert into test.test(name,c_date) values ('one',date_add(now(), interval -1 day));
insert into test.test(name,c_date) values ('two',date_add(now(), interval -2 day));
insert into test.test(name,c_date) values ('three',date_add(now(), interval -3 day));
insert into test.test(name,c_date) values ('four',date_add(now(), interval -3 day));

select * from test.test;
id	name	c_date
1	one	2024-05-19
2	two	2024-05-18
3	three	2024-05-17
4	four	2024-05-17

--昨日
select date_format(date_add(current_timestamp(), interval -1 day),'%Y%m%d') ;
20240520
--当日
select date_format(current_timestamp(),'%Y%m%d') ;
20240521
--本周
select week(current_timestamp()) from dual;
20
--本月
select date_format(current_timestamp(),'%Y%m') ;
202405
--本年
select date_format(current_timestamp(),'%Y') ;
2024

--使用sql实现统计昨日当日当周当月当年的数据量
select 
'昨日' as  c_type
,count(1) as cnt  
from  test.test
where date_format(c_date,'%Y%m%d') = date_format(date_add(current_timestamp(), interval -1 day),'%Y%m%d')

union all
select 
'当日' as  c_type
,count(1) as cnt  
from  test.test
where date_format(c_date,'%Y%m%d') = date_format(current_timestamp(),'%Y%m%d')

union all
select 
'本周' as  c_type
,count(1) as cnt  
from  test.test
where c_date between concat(date_format( date_sub(current_timestamp(),interval weekday(current_timestamp()) day),'%Y-%m-%d'),' 00:00:00') 
	and concat(date_format( date_sub(current_timestamp(),interval weekday(current_timestamp())- 6 day),'%Y-%m-%d'),' 23:59:59') 

union all
select 
'本月' as  c_type
,count(1) as cnt  
from  test.test
where date_format(c_date,'%Y%m') = date_format(current_timestamp(),'%Y%m')

union all
select 
'本年' as  c_type
,count(1) as cnt  
from  test.test
where date_format(c_date,'%Y') = date_format(current_timestamp(),'%Y')

c_type	cnt
昨日	0
当日	0
本周	0
本月	4
本年	4

示例2:

sql 复制代码
--创建oracle测试表 
drop table test.test;
create table test.test
(
id int NOT NULL,
name varchar2(50) DEFAULT NULL ,
c_date date ,
CONSTRAINT "pk_id" PRIMARY KEY (id)
) ;

insert into test.test
select '1','one', sysdate - 1  FROM dual
 union all
select '2','two', sysdate - 2 FROM dual
 union all
select '3','three', sysdate - 3 FROM dual
 union all
select '4','four', sysdate - 3 FROM dual

SELECT * FROM  test.test
ID	NAME	C_DATE
1	one	2024-05-19 18:02:03.000
2	two	2024-05-18 18:02:03.000
3	three	2024-05-17 18:02:03.000
4	four	2024-05-17 18:02:03.000

--昨日
select TO_CHAR(TRUNC(sysdate-1), 'yyyymmdd') from dual;
20240520
--当日
select TO_CHAR(TRUNC(sysdate), 'yyyymmdd') from dual;
20240521
--本周
select TO_CHAR(SYSDATE,'IW')  from dual;
21
--本月
select TO_CHAR(TRUNC(sysdate), 'yyyymm') from dual;
202405
--本年
select TO_CHAR(TRUNC(sysdate), 'yyyy') from dual;
2024

--使用sql实现统计昨日当日当周当月当年的数据量
select 
'昨日' as  c_type
,count(1) as cnt  
from  test.test
where c_date between TRUNC(sysdate - 1) and TRUNC(sysdate - 1) + 0.99999

union all
select 
'当日' as  c_type
,count(1) as cnt  
from  test.test
where c_date between TRUNC(sysdate) and TRUNC(sysdate) + 0.99999

union all
select 
'本周' as  c_type
,count(1) as cnt  
from  test.test
where c_date between TRUNC(SYSDATE ,'iw') and TRUNC(SYSDATE ,'iw') + 6 + 0.99999

union all
select 
'本月' as  c_type
,count(1) as cnt  
from  test.test
where TO_CHAR(c_date,'YYYY-MM') = TO_CHAR(SYSDATE, 'YYYY-MM')

union all
select 
'本年' as  c_type
,count(1) as cnt  
from  test.test
where TO_CHAR(c_date,'YYYY') = TO_CHAR(SYSDATE, 'YYYY')

C_TYPE	CNT
昨日	0
当日	0
本周	0
本月	4
本年	4
相关推荐
指尖下的技术2 分钟前
Mysql面试题----为什么B+树比B树更适合实现数据库索引
数据结构·数据库·b树·mysql
数据馅7 分钟前
python自动生成pg数据库表对应的es索引
数据库·python·elasticsearch
峰子201225 分钟前
B站评论系统的多级存储架构
开发语言·数据库·分布式·后端·golang·tidb
浏览器爱好者2 小时前
如何使用MongoDB进行数据存储?
数据库·mongodb
yuanpan2 小时前
MongoDB中的横向扩容数据分片
数据库·mongodb
草明2 小时前
Mongodb 慢查询日志分析 - 1
数据库·python·mongodb
yuanpan2 小时前
MongoDB的事务机制
数据库·mongodb
SelectDB2 小时前
Apache Doris 2.1.8 版本正式发布
大数据·数据库·数据分析
云和恩墨4 小时前
云计算、AI与国产化浪潮下DBA职业之路风云变幻,如何谋破局启新途?
数据库·人工智能·云计算·dba
明月看潮生5 小时前
青少年编程与数学 02-007 PostgreSQL数据库应用 11课题、视图的操作
数据库·青少年编程·postgresql·编程与数学