Reputation: 19
Something like
SELECT * FROM table WHERE table.column LIKE '?*'
What does that mean?
Upvotes: 0
Views: 53
Reputation: 2639
The question mark ?
character will only search for a single character, and asterisk *
character will search for all characters.
This combination will search for table.column
containing atleast 1 character.
Upvotes: 1