I'm trying to create little search engine for only a small database. "CONCAT () AS name" does not work so how can I use something like Concat() as xxx ?
Created an example here http://sqlfiddle.com/#!2/21b5c/5
What I try to do is
SELECT
CONCAT(names,' ',office) AS bigDataField
FROM item_table
WHERE bigDataField LIKE "%jessy%";
What is the best way to use the concat field?