How do I use regex in a SQLite query?

后端 未结 17 1521
暖寄归人
暖寄归人 2020-11-22 05:57

I\'d like to use a regular expression in sqlite, but I don\'t know how.

My table has got a column with strings like this: \"3,12,13,14,19,28,32\" Now if I type \"whe

17条回答
  •  北海茫月
    2020-11-22 06:41

    In case if someone looking non-regex condition for Android Sqlite, like this string [1,2,3,4,5] then don't forget to add bracket([]) same for other special characters like parenthesis({}) in @phyatt condition

    WHERE ( x == '[3]' OR
            x LIKE '%,3]' OR
            x LIKE '[3,%' OR
            x LIKE '%,3,%');
    

提交回复
热议问题