4

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

ROWID,COLUMN
1,"This here is a string |||"
2,"Here is another string"
3,"And yet another string"

我想排除“COLUMN”下包含“|||”的所有行。这在 SQLite 中可能吗?

4

2 回答 2

7
select * from table where column not like '%|||%'

这应该工作

于 2012-11-22T18:08:00.337 回答
2
select * from your_table
where your_column not like '%'|||%'

SQLFiddle 演示

于 2012-11-22T18:06:50.163 回答