mysql 正則,mysql

來源:互聯網
上載者:User

mysql 正則,mysql

正則^匹配字串開始的部分$匹配字串結束的部分.代表字串中的任意一個字元,包括斷行符號和換行[字元集合]匹配“字元集合”中的任何一個字元,如:[a-z0-9][^]匹配出了“字元集合”之外的任何一個字元S1|S2|S3匹配S1、S2和S3中的任意一個字串*代表多個該符號之前的字元,包括0和0以上+代表多個該符號之前的字元,包括1和1個以上{N}字串出現N次{M,N}字串出現至少M次,最多N次例:select * from info where name REGEXP '^L';匹配以L開頭的例:select * from info where name REGEXP '[ceo]';匹配三個字母中任意一個例:select * from info where name REGEXP 'a*c'; 匹配a可以沒有,+表示至少出現一次例:select * from info where name REGEXP 'ab{1,3}';匹配b字串至少出現過一次,最多3次的記錄例:select * from info where name REGEXP '(ab){1,3}';匹配ab字串至少出現過一次,最多3次的記錄,記錄如果出現3次以上也會檢索出來,因為出現過3次

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.