这是我的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 '%|||%'
这应该工作