我正在尝试在代码点火器中做一个“搜索器”,我是新手。我知道我能做到:
$query= $this->db->get_where('products', array('producto_nombre' => 'Arenal');
获得确切的巧合。如果我想要查询每一个部分巧合,我想做什么,我的意思是,我想获得产品“Arenal”以及产品“Arenal Sound”等等。
答案 0 :(得分:0)
尝试LIKE
而不是WHERE
$this->db->like('producto_nombre', 'Arenal', 'both');
$query = $this->db->get('products');