数据库
首页 > 数据库> > 数据库:mysql日期函数

数据库: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