MySQL的REGEXP 和 like 在匹配上的區別
其中like要求整個數據都要匹配,而REGEXP只需要部分匹配即可。
也就是說,用Like,必須這個字段的所有內容滿足條件,而REGEXP只需要有任何一個片段滿足即可。
A REGEXP pattern match succeeds if the pattern matches anywhere in the value being tested. (This differs from a LIKE pattern match, which succeeds only if the pattern matches the entire value.)