gpt4 book ai didi

php - 计算总时间(以秒为单位)

转载 作者:行者123 更新时间:2023-11-29 07:42:11 24 4
gpt4 key购买 nike

我的表中有一个字段,其中包含执行特定操作的时间。条目就像00:01:29
00:02:12
00:00:45 等等...

现在我想得到所有这些时间的总和(以秒为单位)。

我试过这个:
$time_for_ Correct_ans = TeSTLog::where('token', $exists->token)->where(' Correct', 1)->sum('answering_time');

但是它花费了00:01:29129秒,这是错误的。有没有更好的办法?

我正在使用 Laravel 和 MySQL。

最佳答案

您可以使用 MySQL TIME_TO_SEC :

$time_for_correct_ans = Testlog::selectRaw('SUM(TIME_TO_SEC(answering_time)) AS total')
->where('token', $exists->token)
->where('correct', 1)
->pluck('total');

关于php - 计算总时间(以秒为单位),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28748055/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com