Using CodeIgniter's query builder to make a WHERE clause with CONCAT() and LIKE
18:12 08 Feb 2013

The raw query I'm trying to get plugged in here is:

SELECT * FROM x WHERE CONCAT(y, ' ', x) LIKE '%value%';

I've checked through the query builder documentation and can't find anything that would allow me to do this.

php codeigniter concatenation sql-like query-builder