whereRaw('FIND_IN_SET(?,attr-6ren">
gpt4 book ai didi

mysql - 如何查询数据库以查找列中包含多选(Laravel)中的 json 数据的元素

转载 作者:行者123 更新时间:2023-11-29 17:54:03 26 4
gpt4 key购买 nike

这是我在“attrib”数据库列数据中的内容:

["last","featured","disabled"]

我尝试在查询中添加类似的内容

->whereRaw('FIND_IN_SET(?,attrib)', ['featured'])

但它不起作用...

更新我已经解决了:

$featured = Course::where('attrib', 'like', '%featured%')->get();

但我仍在寻找不使用“LIKE”的更好查询。

最佳答案

您可以在模型中使用 whereIn()

$attrib=["last","featured","disabled"];
->whereIn('attrib',[$attrib])->get();

关于mysql - 如何查询数据库以查找列中包含多选(Laravel)中的 json 数据的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49026046/

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