Mysql查询列中的逗号分隔值和搜索关键字中的aslo

时间:2017-09-06 08:48:16

标签: php mysql codeigniter

我在查询中有一个条件,我想搜索结果。 在数据库中有区域列,其中区域以逗号分隔保存。 并且用户选择以逗号分隔格式获得的多个区域。 如何比较列值和搜索值。 我想在codeigniter中查询。

$search_id2 = "01,02,03";

$this->db->select('posting_id,short_desc, doc_last, country');
$this->db->from('abc');
$this->db->like('region', $search_id2);
$query = $this->db->get();

2 个答案:

答案 0 :(得分:0)

我只是想回答你的问题。 您可以使用explode()

$search_id2 = "01,02,03";
$search_id2 = explode(",",$search_id2)
$this->db->select('posting_id,short_desc, doc_last, country');
$this->db->from('abc');
foreach ($search_id2 as $key) {
    $this->db->or_like('region', $key);
}
$query = $this->db->get();

答案 1 :(得分:0)

正如neodan在评论中建议您可以使用find in set

这样的事情应该做的工作

$search_id2 = "01,02,03";
$arrSearchIds = explode(",",$search_id2);

$this->db
    ->select('posting_id,short_desc, doc_last, country')
    ->from('abc')
    ->group_start();

if (count($arrSearchIds) > 0)
{
    foreach($arrSearchIds AS $id)
    {
        $this->db->or_where("find_in_set(".$id.", region)", NULL, false);
    }
}
$this->db->group_end();
$query = $this->db->get();