Mysql
 sql >> Datenbank >  >> RDS >> Mysql

CodeIgniter mit Active Records und or_like

Ich habe die Antwort für das Codeigniter-Like- und Or_like-Problem im ellislab-Forum https://ellislab.com/forums gefunden /viewthread/185983/ Anstelle von

$this->db->like('location', $your_string);

verwenden:

$this->db->where('location LIKE', '%'.$your_string.'%');

und oder_wo statt or_like .