在SQLite中,如何排除包含某些字符串的行?

use*_*730 4 sql sqlite

这是我的SQLite表(以逗号分隔的格式):

ROWID,COLUMN
1,"This here is a string |||"
2,"Here is another string"
3,"And yet another string"
Run Code Online (Sandbox Code Playgroud)

我想排除'COLUMN'下包含'|||'的所有行.这在SQLite中可行吗?

Sha*_*oor 7

select * from table where column not like '%|||%'
Run Code Online (Sandbox Code Playgroud)

这应该工作