Reputation: 171
What is the syntax in SQLite to get all values which contains given string?
I tried: SELECT columnName FROM tableName WHERE LOCATE(string,columnName)!=0; but it didn't work.
Upvotes: 0
Views: 468
Reputation: 27227
SELECT columnName FROM tableName WHERE columnname LIKE '%string%'
Upvotes: 1