本文介绍了mysql:将timediff()转换为秒的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个类似于以下内容的查询:
I have a query that looks something like the following:
select timediff(time_end, time_begin) from tbl
time_end
和time_begin
均为datetime
是否有一种简单的方法可以将时间转换为整数(秒)?
Is there a trivial way I can convert the time there to return an integer (seconds)?
推荐答案
MySQL TIME_TO_SEC 是您要寻找的
SELECT TIME_TO_SEC(timediff(time_end, time_begin)) from tbl
这篇关于mysql:将timediff()转换为秒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!