Question
DB Field CONTAINS
I have a field in a table that contains a description of a
product. So to search on this field I try this
SELECT *
FROM products
WHERE description CONTAINS ('#searchword#')
This doesn't work. Get a syntax error. What simple little thing am I overlooking?
SELECT *
FROM products
WHERE description CONTAINS ('#searchword#')
This doesn't work. Get a syntax error. What simple little thing am I overlooking?