我无法使用正则表达式从我的 MySQL 表中选择一些结果。
我正在使用这个查询
SELECT text
FROM `articles`
WHERE content REGEXP '.*<img.*?src=\"http://www'
ORDER BY date DESC
它说
#1139 - Got error 'repetition-operator operand invalid' from regexp
我用 Notepad++ 测试了正则表达式,它工作正常,为什么 MySQL 给我这个错误,我该如何修复它?