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的主要内容,如果未能解决你的问题,请参考以下文章