gpt4 book ai didi

Laravel 4 Eloquent ORM 选择其中 - 数组作为参数

转载 作者:行者123 更新时间:2023-12-03 07:36:24 24 4
gpt4 key购买 nike

Eloquent ORM 中有解决方案吗?

我有带有 parent 标识符的数组:

Array ( [0] => 87,  [1] => 65, ... )

我想要选择表 PRODUCTS,其中 Parent_id 列 = 数组中的任何 id

最佳答案

流利:

DB::table('PRODUCTS')->whereIn('parent_id', $parent_ids)->get();

Eloquent :

Product::whereIn('parent_id', $parent_ids)->get();

关于Laravel 4 Eloquent ORM 选择其中 - 数组作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17605693/

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