例如,我有一个表“ example”,其中有一个列“ col1”,其字符串如下所示
some example text here x2.0.3-a abc
some other example text 1.5 abc
another example text 0.1.4 mnp
some other example text abc
another example text mnp
我想选择那些与正则表达式匹配的行。我想要这样的正则表达式
any string.any string.any string space abc/mnp
或any string.any string space abc/mnp
(即正则表达式)应匹配两个或三个点,每个点的前后至少应有一个字符串(字符/数字/特殊字符),然后是单个空格,然后在末尾abc/mnp
。正则表达式和sql查询是什么?