mysql时间相减获取秒数
作者:互联网
ans
time_to_sec(timediff(endTime, startTime))
timestampdiff(second, startTime, endTime)
unix_timestamp(endTime) -unix_timestamp(startTime)
tips
mysql的时间相减是做了一个隐式转换操作,直接把年月日时分秒拼起来:
2022年3月27日 19:15:56 转换为 20220327191556
所以必须使用上述函数进行相减
转载:https://www.cnblogs.com/ceeSomething8/p/16063973.html
标签:秒数,相减,timestamp,unix,startTime,mysql,endTime 来源: https://www.cnblogs.com/shaozelong/p/16597187.html