标签: sqlite select
我有一些这样的数据:
one two one two three one one two
我希望选择包含两个单词的所有条目。是否可以在Sqlite中执行此操作?
答案 0 :(得分:2)
我会尝试这样的事情:
SELECT * FROM tableName WHERE length(columnName) = length(replace(columnName, ' ', '')) + 1;