数据库:mysql日期函数
作者:互联网
mysql日期函数:
1.curdate();当前日期
例子: select curdate();
2.curtime();当前时间
例子: select curtime();
3.now();当前日期和时间
例子: select now();
4.unix_timestamp();当前时间戳
例子: select unix_timestamp();
5.from_unixtime();时间戳转日期
例子: select from_unixtime(1492176896);
6.week(date);一年中的第几周
例子: select week(‘2017-1-8’);
7.year(date);日期中的年部分
例子: select year(‘2017-4-14’);
8.datediff();日期差值
例子: select datediff(‘2017-4-14’,‘2017-4-10’);
标签:函数,unixtime,数据库,日期,例子,mysql,2017,select 来源: https://blog.csdn.net/weixin_43731793/article/details/100690821