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?
select * from table where column not like '%|||%'
this should work
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With