Hi all,
I wanted to write following query through codeigniter's db helper class, guide me plz
query : SELECT * FROM table where column like binary "abc";
i tried
$this->db->select("*"); $this->db->from("table"); $this->db->like("column","binary abc"); $this->db->get();
but it produces
SELECT * FROM table WHERE column like '%binary abc%'