在Sqlite中选择包含一定数量单词的条目?

时间:2012-02-18 10:49:04

标签: sqlite select

我有一些这样的数据:

one two
one two three
one
one two

我希望选择包含两个单词的所有条目。是否可以在Sqlite中执行此操作?

1 个答案:

答案 0 :(得分:2)

我会尝试这样的事情:

SELECT
    *
FROM
    tableName
WHERE
    length(columnName) = length(replace(columnName, ' ', '')) + 1;