MySQL时间函数
1. now
now() 返回当前时间戳2018-11-11 11:11:11
select now();
2. UNIX_TIMESTAMP
返回时间值select UNIX_TIMESTAMP('2017-06-10 13:02:18'); --1497070938
3. FROM_UNIXTIME
返回时间戳select FROM_UNIXTIME(1497070938, '%Y-%m-%d %H:%i:%S'); --2017-06-10 13:02:18 select FROM_UNIXTIME(1497070938); --2017-06-10 13:02:18
4. curtime
返回当前时间time(now()),current_time();
select curtime(),current_time(),time(now());
5. curdate
返回当前日期date(now()),current_date();
select curdate(),current_date(),date(now());
6.datediff
日期差select datediff('2008-08-08', '2008-08-01'); -- 7
相关推荐
九天银河技术 2020-11-11
幸福ITman汪文威 2020-08-15
cyyking 2020-07-04
yhljxy 2020-06-14
xiaobaif 2020-06-14
sofast 2020-06-12
azhou 2020-05-16
tanyhuan 2020-05-16
BiPerler 2020-05-14
huxinguang 2020-04-16
要啥自行车一把梭 2020-05-12
康慧欣 2020-04-21
cyhgogogo 2020-04-17
wangshuangbao 2020-03-25
luotuofeile 2020-03-07
minggehenhao 2020-02-13
liangkaiping0 2020-01-07
mycosmos 2020-01-23
林大鹏 2020-01-04
muzirigel 2020-01-03
wensonlee 2019-12-06
暗夜之城 2019-11-02
wensonlee 2019-10-27
ztyzly00 2019-08-28
敏敏张 2019-04-18
magiclake 2012-01-17
junshangshui 2012-02-07
门门雨 2019-07-01