Reputation: 4123
Here's my SQLite table (in comma-delimited format):
ROWID,COLUMN
1,"This here is a string |||"
2,"Here is another string"
3,"And yet another string"
I want to exclude all rows under 'COLUMN' which contain '|||'. Is this possible in SQLite?
Upvotes: 4
Views: 14814
Reputation: 2515
select * from table where column not like '%|||%'
this should work
Upvotes: 7