gpt4 book ai didi

mysql - Laravel Eloquent - 多个 NOT LIKE 查询?

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

我有一个来自数据库的可变输出,如下所示:

1,2,3,4,有时5,4,9

我想根据用户添加 not like where 子句:

例如:

用户 1

$products = \App\Product::where('user', '1')
->where(['category', 'not like', '1,2,3,4')
->get();

用户2

$products = \App\Product::where('user', '2')
->where(['category', 'not like', '5,4,9')
->get();

最佳答案

https://laravel.com/docs/5.8/queries#where-clauses

$products = \App\Product::where('user','2')
->whereNotIn('category', [5, 4, 9])
->get();

关于mysql - Laravel Eloquent - 多个 NOT LIKE 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58858648/

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