Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能得到个位数整数之间的所有内容?像这个字符串:
7get this text9
我试过了:
SELECT * FROM `test` WHERE `file` REGEXP '[0-9](.*?)[0-9]'
但这会引发mysql错误:
从正则表达式中得到错误“重复运算符操作数无效”
你怎么做到这一点 ?
您有两个重复运算符,*并且?彼此跟随。
*
?
删除?将选择您正在搜索的文本。
SQL小提琴