Hi.
New to mysql and php, so forgive any obvious stupidity, please!
One of mysql tables has category fields, indexed from a table of categories. Each of the categories is named category_1, category_2, category_3, etc.
I'm assuming that can't I use a wildcard to search these categories, like:
'SELECT * FROM products_table WHERE category_% ="furniture"'
as I'm getting a syntax error.
How would I best go about this?
TIA.