数据库:mysql日期函数

mysql日期函数:

1.curdate();当前日期

例子: select curdate();
数据库:mysql日期函数_第1张图片

2.curtime();当前时间

例子: select curtime();
数据库:mysql日期函数_第2张图片

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

例子: select now();
数据库:mysql日期函数_第3张图片

4.unix_timestamp();当前时间戳

例子: select unix_timestamp();
数据库:mysql日期函数_第4张图片

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

例子: select from_unixtime(1492176896);
数据库:mysql日期函数_第5张图片

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

例子: select week(‘2017-1-8’);
数据库:mysql日期函数_第6张图片

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

例子: select year(‘2017-4-14’);
数据库:mysql日期函数_第7张图片

8.datediff();日期差值

例子: select datediff(‘2017-4-14’,‘2017-4-10’);
数据库:mysql日期函数_第8张图片

你可能感兴趣的:(数据库,mysql)