I have table who have a city and description columns and my web page have a single input for search string ..
if i type into my input furniture production i get company name, so its fine, but if i want do something like this furniture production london string with city, i do not get any result.
How can i fix this query to work with city column or other column?
SELECT slug, title FROM catalog WHERE city || description LIKE '%$keyword%
london furniture production,furniture london. Any query satisfying these multiple search filter would have poor performance.