Hi there,
I am trying to write an SQL command that will search for multiple entries in a column.
Basically, a user will enter several key words into a text box, and the SQL command needs to return the rows where all of those words are found in a column, if that makes sense?
So we have a field in the table called 'Interests' in which would be something like "I like to swim, play football and cycle" and I need to find this row when a user enters "Swim, Football, Cycle" into the search form.
I have tried using the LIKE command, but this only works when one keyword is entered.
Any thoughts?