gpt4 book ai didi

mysql - 将查询转换为 eloquent orm laravel

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

我想转换此查询

select sum(TIME_TO_SEC(`duration`)) from `table`

Laravel 5 的 Eloquent ORM

最佳答案

我不确定在什么情况下,但如果我理解正确,你想要

select sum(TIME_TO_SEC(`duration`)) from `table`

成为

DB::table('table')
->select(DB::raw('sum(TIME_TO_SEC(`duration`))')
->get();

关于mysql - 将查询转换为 eloquent orm laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42726860/

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