目录
- 6 unix 时间戳、日期 转换函数
前言
最近在做项目涉及到mysql的复杂日期查询,日期查询其实在数据库中查询其实还是用的挺多的,比如查询开始日期到结束日期的区间信息,查询日期小于有效日期的信息,查询当天的日期,明天的日期,做比较等。
查询使用场景案例
时间区间查询
查询,2021年06月01号到2021年08月25号的数据
select * from `datetest` where date_format(date,'%y%m%d') between '20210601' and '20210825'
包括开始时间,不包括结束时间
但是date_format(date,’%y%m’)这种写法,无法使用索引,数据量大了以后查询超级慢
查询日期今天时间比较数据
select * from t_user t where t.create_time>=curdate()
通过date把时间日期转换为时间格式
select * from t_user t where date (t.create_time)>=date (now())
常用的周期时间查询
-- 今天 select fullname,addedtime from t_user where to_days(addedtime) <= to_days(now()); -- 昨天 select fullname,addedtime from t_user where to_days(now()) - to_days(addedtime) <= 1; -- 近7天 select fullname,addedtime from t_user where date_sub(curdate(),interval 7 day) <= date(addedtime); -- 近30天 select fullname,addedtime from t_user where date_sub(curdate(), interval 30 day) <= date(addedtime); -- 本月 select fullname,addedtime from t_user where date_format( addedtime, '%y%m' ) = date_format( curdate() , '%y%m' ); -- 上一月 select fullname,addedtime from t_user where period_diff( date_format( now( ) , '%y%m' ) , date_format( addedtime, '%y%m' ) ) =1; -- 查询本季度数据 select fullname,addedtime from t_user where quarter(addedtime)=quarter(now()); -- 查询上季度数据 select fullname,addedtime from t_user where quarter(addedtime)=quarter(date_sub(now(),interval 1 quarter)); -- 查询本年数据 select fullname,addedtime from t_user where year(addedtime)=year(now()); -- 查询上年数据 select fullname,addedtime from t_user where year(addedtime)=year(date_sub(now(),interval 1 year)); -- 查询距离当前现在6个月的数据 select fullname,addedtime from t_user where addedtime between date_sub(now(),interval 6 month) and now(); -- 查询当前这周的数据 select fullname,addedtime from t_user where yearweek(date_format(addedtime,'%y-%m-%d')) = yearweek(now()); -- 查询上周的数据 select fullname,addedtime from t_user where yearweek(date_format(addedtime,'%y-%m-%d')) = yearweek(now())-1; -- 查询上个月的数据 select fullname,addedtime from t_user where date_format(addedtime,'%y-%m')=date_format(date_sub(curdate(), interval 1 month),'%y-%m'); -- 查询当前月份的数据 select fullname,addedtime from t_user where date_format(addedtime,'%y%m') = date_format(curdate(),'%y%m'); select fullname,addedtime from t_user where date_format(addedtime,'%y-%m')=date_format(now(),'%y-%m'); -- 查询指定时间段的数据 select fullname,addedtime from t_user where addedtime between '2017-1-1 00:00:00' and '2018-1-1 00:00:00'; select fullname,addedtime from t_user where addedtime >='2017-1-1 00:00:00' and addedtime < '2018-1-1 00:00:00';
mysql日期时间函数
1 得当前日期+时间(date + time)函数:now()
select now(); +---------------------+ | now() | +---------------------+ | 2021-08-31 16:16:32 | +---------------------+
2 获得当前日期+时间(date + time)函数:sysdate()
sysdate() 日期时间函数跟 now() 类似,不同之处在于:now() 在执行开始时值就得到了, sysdate() 在函数执行时动态得到值。看下面的例子就明白了:
select now(), sleep(3), now(); +---------------------+----------+---------------------+ | now() | sleep(3) | now() | +---------------------+----------+---------------------+ | 2021-08-31 16:20:12 | 0 | 2021-08-31 16:20:12 | +---------------------+----------+---------------------+
我们可以看到前后时间并没有改变,所以说是在执行开始之前值就得到了
sysdate() 日期时间函数,一般情况下很少用到。
3 获得当前时间戳函数:current_timestamp, current_timestamp()
select current_timestamp, current_timestamp(); +---------------------+---------------------+ | current_timestamp | current_timestamp() | +---------------------+---------------------+ | 2021-08-31 16:27:26 | 2021-08-31 16:27:26 | +---------------------+---------------------+
4 获取当前日期(date)函数: curdate()
-- 2021-08-31 select curdate();
mysql日期时间转换函数
1 日期时间转换字符串格式
date/time to str(日期/时间转换为字符串)函数:date_format(date,format), time_format(time,format)
select date_format('2021-08-31 22:23:01', '%y%m%d%h%i%s'); +----------------------------------------------------+ | date_format('2021-08-31 22:23:01', '%y%m%d%h%i%s') | +----------------------------------------------------+ | 20210831222301 | +----------------------------------------------------+
mysql 日期、时间转换函数:date_format(date,format), time_format(time,format) 能够把一个日期/时间转换成各种各样的字符串格式。它是 str_to_date(str,format) 函数的 一个逆转换。
2 字符串转换为日期时间
mysql str to date (字符串转换为日期)函数:str_to_date(str, format)
select str_to_date('08/31/2021', '%m/%d/%y'); -- 2021-08-31 select str_to_date('08/31/2021' , '%m/%d/%y'); -- 2021-08-31 select str_to_date('08.31.2021', '%m.%d.%y'); -- 2021-08-31 select str_to_date('08:09:30', '%h:%i:%s'); -- 08:09:30 select str_to_date('08.09.2021 08:31:30', '%m.%d.%y %h:%i:%s'); -- 2021-08-31 08:09:30
可以看到,str_to_date(str,format) 转换函数,可以把一些杂乱无章的字符串转换为日期格式。另外,它也可以转换为时间。“format” 可以参看 mysql 手册。
3 (日期、天数)转换函数
mysql (日期、天数)转换函数:to_days(date), from_days(days)
select to_days('0000-00-00'); -- 0 select to_days('2021-08-31'); -- 738398
4 (时间、秒)转换函数
mysql (时间、秒)转换函数:time_to_sec(time), sec_to_time(seconds)
select time_to_sec('01:00:05'); -- 3605 select sec_to_time(3605); -- '01:00:05'
5 拼凑日期、时间函数
mysql 拼凑日期、时间函数:makdedate(year,dayofyear), maketime(hour,minute,second)
select makedate(2021,31); -- '2021-01-31' select makedate(2021,32); -- '2021-02-01' select maketime(12,15,30); -- '12:15:30'
makedate(2021,31) 前面是年份,后面是天数,默认重1月份开始,如果后面天数是多少天,就进一个月数,
6 unix 时间戳、日期 转换函数
unix_timestamp(),
unix_timestamp(date),
from_unixtime(unix_timestamp),
from_unixtime(unix_timestamp,format)
select unix_timestamp(); -- 1218290027 select unix_timestamp('2008-08-08'); -- 1218124800 select unix_timestamp('2008-08-08 12:30:00'); -- 1218169800 select from_unixtime(1218290027); -- '2008-08-09 21:53:47' select from_unixtime(1218124800); -- '2008-08-08 00:00:00' select from_unixtime(1218169800); -- '2008-08-08 12:30:00' select from_unixtime(1218169800, '%y %d %m %h:%i:%s %x'); -- '2008 8th august 12:30:00 2008'
mysql 日期时间计算函数
1 为日期增加一个时间间隔:date_add()
set @dt = now(); -- 定义变量 select date_add(@dt, interval 1 day); -- add 1 day select date_add(@dt, interval 1 hour); -- add 1 hour select date_add(@dt, interval 1 minute); -- ... select date_add(@dt, interval 1 second); select date_add(@dt, interval 1 microsecond); select date_add(@dt, interval 1 week); select date_add(@dt, interval 1 month); select date_add(@dt, interval 1 quarter); select date_add(@dt, interval 1 year); select date_add(@dt, interval -1 day); -- sub 1 day 加-1天也就是减1天
mysql adddate(), addtime()函数,可以用 date_add() 来替代。下面是 date_add() 实现 addtime() 功能示例:
set @dt = '2021-08-31 12:12:33'; select date_add(@dt, interval '01:15:30' hour_second); -- 2021-08-31 13:28:03 select date_add(@dt, interval '1 01:15:30' day_second); -- 2021-09-01 13:28:03
2 为日期减去一个时间间隔:date_sub()
-- 2021-08-29 22:58:59 select date_sub('2021-08-31 00:00:00', interval '1 1:1:1' day_second);
date_sub() 日期时间函数 和 date_add() 用法一致,不再赘述。
3 日期、时间相减函数:datediff(date1,date2), timediff(time1,time2)
-- 两个日期相减 date1 - date2,返回天数。 select datediff('2021-08-31', '2021-08-30'); -- 1 select datediff('2021-08-31', '2021-08-20'); -- -11 -- 两个日期相减 time1 - time2,返回 time 差值。 select timediff('2021-08-31 08:08:08', '2021-08-30 00:00:00'); -- 32:08:08 select timediff('08:08:08', '00:00:00'); -- -08:08:08
timediff(time1,time2) 函数的两个参数类型必须相同
4 时间戳(timestamp)转换、增、减函数:
timestamp(date) — date to timestamp
timestamp(dt,time) — dt + time
timestampadd(unit,interval,datetime_expr) —
timestampdiff(unit,datetime_expr1,datetime_expr2) —
select timestamp('2021-08-31'); -- 2021-08-31 00:00:00 select timestamp('2021-08-31 08:00:00', '01:01:01'); -- 2021-08-31 09:01:01 select timestamp('2021-08-31 08:00:00', '10 01:01:01'); -- 2021-09-10 09:01:01 select timestampadd(day, 1, '2021-08-31 08:00:00'); -- 2021-09-01 08:00:00 select date_add('2021-08-31 08:00:00', interval 1 day); -- 2021-09-01 08:00:00 -- mysql timestampadd() 函数类似于 date_add()。 select timestampdiff(year,'2021-08-31','2001-01-01'); -- -20 select timestampdiff(day ,'2021-08-31','2001-01-01'); -- --7547 select timestampdiff(hour,'2021-08-31 12:00:00','2021-08-31 00:00:00'); -- -12 select datediff('2021-08-31 12:00:00', '2021-08-31 00:00:00'); -- 0
mysql timestampdiff() 函数就比 datediff() 功能强多了,datediff() 只能计算两个日期(date)之间相差的天数
时区(timezone)转换函数
convert_tz(dt,from_tz,to_tz) 函数
-- 2021-08-31 04:00:00 select convert_tz('2021-08-31 12:00:00', '+08:00', '+00:00');
时区转换也可以通过 date_add, date_sub, timestampadd 来实现。
select date_add('2021-08-31 12:00:00', interval -8 hour); -- 2021-08-31 04:00:00 select date_sub('2021-08-31 12:00:00', interval 8 hour); -- 2021-08-31 04:00:00 select timestampadd(hour, -8, '2021-08-31 12:00:00'); -- 2021-08-31 04:00:00
到此这篇关于mysql 日期格式化及复杂日期区间查询的文章就介绍到这了,更多相关mysql 日期格式化及日期区间查询内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!