当前位置:Gxlcms > 数据库问题 > Mysql 常用函数(40)- time_to_sec 函数

Mysql 常用函数(40)- time_to_sec 函数

时间:2021-07-01 10:21:17 帮助过:20人阅读

https://www.cnblogs.com/poloyy/p/12890763.html

 

time_to_sec 的作用

将指定时间转换为秒

 

time_to_sec 的语法格式

TIME_TO_SEC(time)

语法格式说明

  • time:传入时间,如果传入了日期部分,也不会管,只将时间部分转换成秒
  • 重点:是指将传入的时间转换成距离当天00:00:00的秒数,00:00:00为基数,等于 0 秒

小栗子

SELECT TIME_TO_SEC(1987-01-01 00:39:38); # 2378

SELECT TIME_TO_SEC(CURRENT_TIME); # 42564

SELECT TIME_TO_SEC(CURTIME()); # 42564

 

Mysql 常用函数(40)- time_to_sec 函数

标签:www   href   log   current   time_t   时间转换   日期   https   color   

人气教程排行