gpt4 book ai didi

php - laravel - 来自 mysql 数据库的时间总和

转载 作者:行者123 更新时间:2023-11-29 19:01:32 25 4
gpt4 key购买 nike

欢迎!我在函数中做了这个查询$time= DB::table('notes') ->where('pilot_id', $id) ->sum('time');

但是我得到的格式是这样的 120000 ,它应该是 1:20 如何得到它?(小时:分钟)

时间以“time”类型存储在数据库中

最佳答案

试试这个

$time = DB::select("SELECT SEC_TO_TIME( SUM( TIME_TO_SEC( `time` ) ) ) AS total_time FROM notes WHERE pilot_id = ?", [$id]);
echo '<pre>';
print_r($time);
exit;

关于php - laravel - 来自 mysql 数据库的时间总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43841319/

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