Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 SQLite 表(以逗号分隔的格式):
ROWID,COLUMN 1,"This here is a string |||" 2,"Here is another string" 3,"And yet another string"
我想排除“COLUMN”下包含“|||”的所有行。这在 SQLite 中可能吗?
select * from table where column not like '%|||%'
这应该工作
select * from your_table where your_column not like '%'|||%'
SQLFiddle 演示