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 に答える