Hello,
I have an items table which contains a column called keywords. How can i search the table to return the matched tags and in what way would the tags be stored in. At the moment i have tried..
SELECT * FROM items WHERE CONCAT(name,code,keywords) LIKE '%$search%' ORDER BY code ASC
Though it does not return what is in the keywords column's row.
For example if a row contains ...
Name = Red Car
Code = 0001
Keywords = Brand New Wheels
... and the search is "brand new wheels red" nothing is currently returned.
Thanks 😃