例如1,2,3,4之类的id或者其他组成的数值字符串存入字段中,然后会有查询的需求,例如我们需要查询包含1的所有的数据,这时我们可以使用find_in_set()函数;
$id=4; Db::name('menu')->where('FIND_IN_SET(:id,pid_all)',['id' => $id])->select(); $map[]=['exp','FIND_IN_SET(2,needID)']; $db->where($map)->select(); //TP5.1.21 版本之后数组查询支持:要达到这样子查询: //1、首先引用: use think\db\Where; //2、定义数组:$where = new Where; //3、就可以用了:$where['title'] = ['like', "%".$sotitle."%"]; //使用exp时,使用Db::raw("方法"); $where['class_id'] = ['in', '$cid_all']; $where['id'] = ['in', $all_user_id];//或这样子 $where['title'] = ['like', '%php%']; $where['id'] = ['<>', $id]; $where['id'] = ['notin', $all_user_id];//不等于 //值为数字 $id=419; $where[] = ['exp',Db::raw("FIND_IN_SET($id,ids)")];//ids值为数字,例子1,2,3 //值为字符串 $id值等于dfd 要注意'引号 $where[] = ['exp',Db::raw("FIND_IN_SET('$id',ids)")];//ids值为数字,例子:'1/2/3','2/3/1','3/4/5'
标签:SET,Db,值为,thinkphp5,查询,逗号,where,id From: https://www.cnblogs.com/lusanqian/p/16794742.html