How to search for a substring in SQLite?

前端 未结 3 788
暖寄归人
暖寄归人 2021-02-05 01:13

Whats the most efficient way to search for a sub string in SQLite?

I\'m looking at the LIKE operator.

Do I have the right idea? Has this worked well for you?

3条回答
  •  别跟我提以往
    2021-02-05 01:22

    Yepper, use Like. Select id from sometable where name like '%omm%' would return any row that had 'omm' anywhere in the name column.

提交回复
热议问题