I have a MySQL query:
SELECT concat_ws(title,description) as concatenated HAVING concatenated LIKE \'%SearchTerm%\';
And my table is encode
This is the working code:
SELECT title,description FROM ( SELECT title,description, LOWER(CONCAT_WS(title,description)) AS concatenated FROM table1 ) AS Q WHERE concatenated LIKE LOWER('%search%')