let\'s say I have a string in which the words are separated by 1 or more spaces and I want to use that string in and SQL LIKE condition. How do I make my SQL and tell it to
Another way to match for one or more space would be to use []. It's done like this.
[]
LIKE '%[ ]%'
This will match one or more spaces.