mysql如何查询日期与时间

前言:

在项目开发中,一些业务表字段经常使用日期和时间类型,而且后续还会牵涉到这类字段的查询。关于日期及时间的查询等各类需求也很多,本篇文章简单讲讲日期及时间字段的规范化查询方法。

1.日期和时间类型概览

mysql支持的日期和时间类型有 datetime、timestamp、date、time、year ,几种类型比较如下:

涉及到日期和时间字段类型选择时,根据存储需求选择合适的类型即可。

2.日期和时间相关函数

处理日期和时间字段的函数有很多,有的经常会在查询中使用到,下面介绍下几个相关函数的使用方法。

  • curdate 和 current_date   两个函数作用相同,返回当前系统的日期值。
  • curtime 和 current_time   两个函数作用相同,返回当前系统的时间值。
  • now() 和 sysdate()   两个函数作用相同,返回当前系统的日期和时间值。
  • unix_timestamp   获取unix时间戳函数,返回一个以 unix 时间戳为基础的无符号整数。
  • from_unixtime   将 unix 时间戳转换为时间格式,与unix_timestamp互为反函数。
  • to_days()   提取日期值并返回自公元0年到现在的天数。
  • day()    获取指定日期或时间中的天值。
  • date()   获取指定日期或时间中的日期。
  • time()   获取指定日期或时间中的时间。
  • month   获取指定日期中的月份。
  • week   获取指定日期是一年中的第几周。
  • year   获取年份。
  • quarter  获取日期所在的季度值。
  • date_add 和 adddate   两个函数功能相同,都是向日期添加指定的时间间隔。
  • date_sub 和 subdate   两个函数功能相同,都是向日期减去指定的时间间隔。
  • addtime   时间加法运算,在原始时间上添加指定的时间。
  • subtime   时间减法运算,在原始时间上减去指定的时间。
  • datediff   获取两个日期之间间隔,返回参数 1 减去参数 2 的值。
  • date_format   格式化指定的日期,根据参数返回指定格式的值。

一些使用示例:

mysql> select current_date,current_time,now();
+--------------+--------------+---------------------+
| current_date | current_time | now()        |
+--------------+--------------+---------------------+
| 2020-06-03  | 15:09:37   | 2020-06-03 15:09:37 |
+--------------+--------------+---------------------+

mysql> select to_days('2020-06-03 15:09:37'),
to_days('2020-06-03')-to_days('2020-06-01');
+--------------------------------+---------------------------------------------+
| to_days('2020-06-03 15:09:37') | to_days('2020-06-03')-to_days('2020-06-01') |
+--------------------------------+---------------------------------------------+
|             737944 |                      2 |
+--------------------------------+---------------------------------------------+

mysql> select month('2020-06-03'),week('2020-06-03'),year('2020-06-03');
+---------------------+--------------------+--------------------+
| month('2020-06-03') | week('2020-06-03') | year('2020-06-03') |
+---------------------+--------------------+--------------------+
|          6 |         22 |        2020 |
+---------------------+--------------------+--------------------+

# datediff(date1,date2) 返回起始时间 date1 和结束时间 date2 之间的天数
mysql> select datediff('2017-11-30','2017-11-29') as col1,
  -> datediff('2017-11-30','2017-12-15') as col2;
+------+------+
| col1 | col2 |
+------+------+
|  1 | -15 |
+------+------+

3.日期和时间字段的规范查询

上面的内容都是为我们的查询需求做准备,在项目需求中,经常会以日期或时间为条件进行筛选查询。有时候这类需求多种多样,下面我们来学习下关于日期和时间字段的查询写法。

首先,为了使查询更加准确,在插入数据时也要按规范来插入。比如说年份使用4位数字,日期和月份要在合理范围内等,下面为了测试方便,我们创建一个表,并插入部分数据。

create table `t_date` (
`increment_id` int unsigned not null auto_increment comment '自增主键',
`year_col` year not null comment '年',
`date_col` date not null comment '日期',
`time_col` time not null comment '时间',
`dt_col` datetime not null comment 'datetime时间',
`create_time` timestamp not null default current_timestamp comment '创建时间',
 primary key (`increment_id`)
) engine=innodb default charset=utf8 comment='time测试表';


# 日期和时间都选取当前的日期或时间
insert into t_date (year_col,date_col,time_col,dt_col,create_time) values 
(year(now()),date(now()),time(now()),now(),now());


# 指定日期或时间插入
insert into t_date ( `year_col`, `date_col`, `time_col`, `dt_col`, `create_time` )
values
  ( 2020, '2020-06-03', '09:00:00', '2020-06-03 10:04:04', '2020-06-03 10:04:04' ),
  ( 2020, '2020-05-10', '18:00:00', '2020-05-10 16:00:00', '2020-05-10 16:00:00' ),
  ( 2019, '2019-10-03', '16:04:04', '2019-10-03 16:00:00', '2019-10-03 16:00:00' ),
  ( 2018, '2018-06-03', '16:04:04', '2018-06-03 16:00:00', '2018-06-03 16:00:00' ),
  ( 2000, '2000-06-03', '16:04:04', '2000-06-03 08:00:00', '2000-06-03 08:00:00' ),
  ( 2008, '2008-06-03', '16:04:04', '2008-06-03 08:00:00', '2008-06-03 08:00:00' ),
  ( 1980, '1980-06-03', '16:04:04', '1980-06-03 08:00:00', '1980-06-03 08:00:00' );

根据上面测试表的数据,我们来学习下几种常见查询语句的写法:

根据日期或时间等值查询

select * from t_date where year_col = 2020;
select * from t_date where date_col = '2020-06-03';
select * from t_date where dt_col = '2020-06-03 16:04:04';

根据日期或时间范围查询

select * from t_date where date_col > '2018-01-01';
select * from t_date where dt_col >= '2020-05-01 00:00:00' and dt_col < '2020-05-31 23:59:59';
select * from t_date where dt_col between '2020-05-01 00:00:00' and '2020-05-31 23:59:59';

查询本月的数据

# 查询create_time在本月的数据
select * from t_date where date_format(create_time, '%y-%m' ) = date_format( curdate( ) , '%y-%m' );

查询最近多少天的数据

# 以date_col为条件 查询最近7天或30天的数据
select * from t_date where date_sub(curdate(), interval 7 day) <= date(date_col);
select * from t_date where date_sub(curdate(), interval 30 day) <= date(date_col);

其他各类查询写法

# 查询今天的数据
select * from t_date where to_days(create_time) = to_days(now());

# 查询某个月的数据
select * from t_date where date_format(create_time, '%y-%m')='2020-06';

# 查询某年的数据
select * from t_date where date_format(create_time, '%y')= 2020;
select * from t_date where year(create_time) = 2020;

# 根据日期区间查询数据,并排序
select * from t_date where date_format(create_time, '%y') between '2018' and '2020' order by create_time desc;

总结:

本篇文章从日期和时间字段讲起,接着讲述了相关函数的使用方法,最后列举出一些常用的查询方法。希望这些内容对你有所帮助。真实情况下,某些查询可能更加复杂,特别是数据量很大时,根据时间字段查询往往会速度很慢,这时也要注意创建索引,最好能把时间字段转换为时间戳,因为整型的查询和筛选会快些。最好也要做个提醒,不要在日期和时间字段上做运算,程序能完成的事情不要在数据库层面来做。

以上就是mysql如何查询日期与时间的详细内容,更多关于mysql查询日期与时间的资料请关注www.887551.com其它相关文章!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐