gpt4 book ai didi

laravel-4 - Eloquent 地方不在查询中?

转载 作者:行者123 更新时间:2023-12-01 08:27:48 24 4
gpt4 key购买 nike

我正在尝试使用 eloquent 构建以下 sql 查询。该查询为我提供了 table_a 中所有在 id 列表中且未出现在 table_b 中的记录。

select * from table_a 
where id in (1,2,3)
and id not in
(select tablea_id from table_b
where tablea_id in (1,2,3))

那么我该如何做到 eloquent 呢?我想避免使用原始查询。
//does not work
TableA::whereIn('id',$ids)
->whereNotIn('id', TableB::select('tabla_id')->whereIn($ids));

最佳答案

要运行子查询,您必须传递一个闭包:

TableA::whereIn('id',$ids)
->whereNotIn('id', function($q){
$q->select('tabla_id')
->from('tableb');
// more where conditions
})
->get();

关于laravel-4 - Eloquent 地方不在查询中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29643181/

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