why this will make an error?
$this->db->where('MATCH (title) AGAINST ("stackoverflow")', NULL, TRUE);
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AGAINST ("stackoverflow") LIMIT 4' at line 3
SELECT * FROM (
table) WHEREMATCH(title) AGAINST ("stackoverflow") LIMIT 4
when change to FALSE,the query will ok,but i want to protect mytable with with backticks
selectmethod! – ifaour Jan 23 '11 at 10:37