thinkphp find_in_set 与 replace

Posted 叫我亚庆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp find_in_set 与 replace相关的知识,希望对你有一定的参考价值。

//find_in_set        
 $model->where(\'find_in_set(:cid,rc)\', [\'cid\' => 9])->select();


//replace替换  搜索(10,12), 原(10),新(9)

$model->where(\'id\',1)->update([ 
  \'rc\' => Db::raw("replace(\'10,12\',10,9)") 
]);

  

以上是关于thinkphp find_in_set 与 replace的主要内容,如果未能解决你的问题,请参考以下文章

mysql 使用 FIND_IN_SET 来查询数据

ThinkPHP 跨模块调用操作方法(A方法与R方法)

MySQL find_in_set 与多个搜索字符串

thinkphp A()R()方法不能跨项目调用与当前action名称相同的控制器的原因

impala find_in_set 与性能对比

将 DISTINCT 与 FIND_IN_SET 一起使用