gpt4 book ai didi

eloquent - 在 Eloquent 中获取奇数或偶数 ID

转载 作者:行者123 更新时间:2023-12-02 15:10:36 29 4
gpt4 key购买 nike

我有一个任务需要显示每种类型的假期,其中 id 是奇数。当我尝试在 Eloquent 中执行它时,它总是给我一个错误。

查询

Select holiday_type.id, holiday_type.name
From holiday_type
Where (holiday_type.id % 2) = 0;

PHP 语言

return DB::table('holiday_type')
->select('holiday_type.id','holiday_type.name as text')
// ->where(('id%2'), '=', 0)) ** I also tried different format but still nothing
->get();
}

最佳答案

您可以使用 raw expression

DB::table('holiday_type')
->select(DB::raw('holiday_type.id, holiday_type.name as text'))
->whereRaw('MOD(id, 2) = 0')
->get();

关于eloquent - 在 Eloquent 中获取奇数或偶数 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44129549/

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