例:数据表cid字段为1,2,34,5,6,7,8,9,10,11
需求:需要查询cid为1的数据
解决:使用find_in_set(查找值,字段名)
Db::table('think_user')
->where('find_in_set(1,sids)')
->select();
例:数据表cid字段为1,2,34,5,6,7,8,9,10,11
需求:需要查询cid为1的数据
解决:使用find_in_set(查找值,字段名)
Db::table('think_user')
->where('find_in_set(1,sids)')
->select();