Is there a way to combine the MATCH
and REGEXP
operators in an SQLite3 statement?
eg. I suspect not but,
SELECT *
FRO开发者_开发百科M myTable
WHERE name MATCH REGEXP '[ _]Smith[ _];'
Is there a way to combine the MATCH
and REGEXP
operators in an SQLite3 statement?
eg. I suspect not but,
SELECT *
FRO开发者_开发百科M myTable
WHERE name MATCH REGEXP '[ _]Smith[ _];'
精彩评论