Good morning.
I have a field in my table called tags
, I would like to search, where two or three words can be considered.
Example: In the tags
field, I have some words, like "free", "booths", "audiometer" ... with the query below, my result returns empty, even with the word being inside the field.
How do I do:
SELECT *
FROM Produtos
WHERE Tags = 'Audiômetro' OR 'Impedanciômetro' OR 'OEA' OR 'BERA' OR 'Vectonistagmógrafo';
My result only appears if I only have one item in the "tags" field. If I put a phrase, for example, I do not get results.
How to proceed?