数据库:mysql日期函数

mysql日期函数:

1.curdate();当前日期

例子: select curdate();
数据库:mysql日期函数

2.curtime();当前时间

例子: select curtime();
数据库:mysql日期函数

3.now();当前日期和时间

例子: select now();
数据库:mysql日期函数

4.unix_timestamp();当前时间戳

例子: select unix_timestamp();
数据库:mysql日期函数

5.from_unixtime();时间戳转日期

例子: select from_unixtime(1492176896);
数据库:mysql日期函数

6.week(date);一年中的第几周

例子: select week(‘2017-1-8’);
数据库:mysql日期函数

7.year(date);日期中的年部分

例子: select year(‘2017-4-14’);
数据库:mysql日期函数

8.datediff();日期差值

例子: select datediff(‘2017-4-14’,‘2017-4-10’);
数据库:mysql日期函数

上一篇:presto 查询每天固定时间段


下一篇:hive时间戳转换&UDF更新