gpt4 book ai didi

laravel - 在 Eloquent 中为多表编写 orwhere

转载 作者:行者123 更新时间:2023-12-02 17:52:18 26 4
gpt4 key购买 nike

我使用 eloquent 作为 ORM,我想在多表中使用 where,如下所示:

$raw_query = EntityCity::with(['province']);
$raw_query = $raw_query->where(function ( $q ) use ( $search_data ) {
$q->where('city.title' , 'like' , "%$search_data%")
->orwhere('province.title' , 'like' , "%$search_data%");
});
}
$this->data[ 'result_list' ] = $raw_query->limit($this->per_page)
->orderByDesc("time_insert")
->offset(( $page_num - 1 ) * $this->per_page)
->get();

但是,我遇到以下错误:

Message: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'province.title' in 'where clause' (SQL: select count(*) as aggregate from city where (city.title like %fars% or province.title like %fars%))

如果我评论orwhere它就会起作用。

那么如何使用 orwhere 来编写此代码?

最佳答案

而不是:

   $raw_query = $raw_query->where(function ( $q ) use ( $search_data ) {
$q->where('city.title' , 'like' , "%$search_data%")
->orwhere('province.title' , 'like' , "%$search_data%");
});
}

你应该使用:

$raw_query = $raw_query->where(function($q) {
$q->where('city.title', 'like', "%$search_data%")
->orWhereHas('province', function ( $q ) use ( $search_data ) {
$q->where('province.title' , 'like' , "%$search_data%");
});
});

请注意,where .. orWhereHas 被包装在额外的 where 中,这让您有信心添加任何其他条件,例如仅选择事件城市:

$raw_query = $raw_query->where(function($q) {
$q->where('city.title', 'like', "%$search_data%")
->orWhereHas('province', function ( $q ) use ( $search_data ) {
$q->where('province.title' , 'like' , "%$search_data%");
});
})->where('active', 1);

关于laravel - 在 Eloquent 中为多表编写 orwhere,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47953188/

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