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 デモ