mysql计算日期之间相差的天数详解数据库

有两种方式可以获得mysql两个日期之间的差值,一种是使用TO_DAYS函数,另一种是datediff函数

select id, 
    TO_DAYS(NOW()) - TO_DAYS(createTime)  as dayFactor, 
    datediff(NOW(),createTime) as dayFactor1 
from code_snippet 
limit 10

上面的sql中的code_snippet表中有字段id和createTime。

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/6654.html

(0)
上一篇 2021年7月17日
下一篇 2021年7月17日

相关推荐

发表回复

登录后才能评论