FIND IN SET函数:修订间差异

来自维基鲸
无编辑摘要
无编辑摘要
 
第10行: 第10行:
</pre>
</pre>


[category:thinkphp]
[[category:thinkphp]]
[category:mysql]
[[category:mysql]]

2024年4月24日 (三) 16:41的最新版本

category_ids字段:2,4,8,13,25

原生SQL:

select * from table where FIND_IN_SET('13',category_ids)
 

ThinkPHP

$category_ids = 13;
$where[] = ['exp', Db::raw("FIND_IN_SET($category_ids,category_ids)")];