这是我的SQLite表(用逗号分隔的格式):
ROWID,COLUMN
1,"This here is a string |||"
2,"Here is another string"
3,"And yet another string"
我想排除'COLUMN'下包含'|||'的所有行。这在SQLite中是否可行?
答案 0 :(得分:7)
select * from table where column not like '%|||%'
这应该有效
答案 1 :(得分:2)
select * from your_table
where your_column not like '%'|||%'