标签: mysql regex
在MySQL中,我需要从一个包含字段中某个字符串的表中选择所有寄存器,但不能跟随另一个字符串。 我尝试过使用:
select * from table where field REGEXP "(desired_string(?non_desired_follow_up))"
但是,我得到了:
Got error 'repetition-operator operand invalid' from regexp
任何人都可以帮助获得正确的判断吗?