MySQL中的日期操作
获取当前时间
now()
1
2
3
4
5
6
7mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2018-07-26 15:58:46 |
+---------------------+
1 row in set (0.00 sec)sysdate()
1
2
3
4
5
6
7mysql> select sysdate()
+---------------------+
| sysdate() |
+---------------------+
| 2018-07-26 15:59:19 |
+---------------------+
1 row in set (0.00 sec)
两者之间的区别在于:**sysdate()
是实时获取的**。
1 | mysql> select now(), sleep(3), now(); |
current_timestamp
,current_timestamp()
1 | mysql> select current_timestamp, current_timestamp(); |
日期、时间转换
感觉时间与日期这块有挺多操作的,包括与字符串的相互转换等。
日期/时间转字符串
date_format()
/time_format()
将日期/时间转换成字符串1
2
3
4
5
6
7
8
9
10
11
12
13
14
15mysql> select date_format('2018-7-26 16:05:11', '%Y%m%d%H%i%s')
+---------------------------------------------------+
| date_format('2018-7-26 16:05:11', '%Y%m%d%H%i%s') |
+---------------------------------------------------+
| 20180726160511 |
+---------------------------------------------------+
1 row in set (0.00 sec)
mysql> select time_format('16:05:11', '%H%i%s');
+-----------------------------------+
| time_format('16:05:11', '%H%i%s') |
+-----------------------------------+
| 160511 |
+-----------------------------------+
1 row in set (0.00 sec)str_to_date()
将字符串转成日期类型。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15mysql> select str_to_date('07/26/2018', '%m/%d/%Y');
+---------------------------------------+
| str_to_date('07/26/2018', '%m/%d/%Y') |
+---------------------------------------+
| 2018-07-26 |
+---------------------------------------+
1 row in set (0.00 sec)
mysql> select str_to_date('2018/7/26 16:23:33','%Y/%m/%d %H:%i:%s');
+-------------------------------------------------------+
| str_to_date('2018/7/26 16:23:33','%Y/%m/%d %H:%i:%s') |
+-------------------------------------------------------+
| 2018-07-26 16:23:33 |
+-------------------------------------------------------+
1 row in set (0.00 sec)
日期时间计算函数
为日期增加一个时间间隔:date_add()
1 | set @dt = now(); |
为日期减去一个时间间隔:date_sub()
日期、时间相减函数:datediff(date1,date2)
, timediff(time1,time2)