mysql模糊查詢

  一. like 普通模糊查詢html

     結構 :字段 like '對比表達式'正則表達式

     %: 代替0個或多個任意字符。學習

     _ : 代替1個任意字符。spa

  select * from stu where sname like '_強%'// 查詢stu表中學生名字第二個字是‘強’的學生信息

  二.rlike 正則表達式code

    結構  : 字段 rlike '正則表達式'regexp

   經常使用符號 :htm

    .  : 匹配任何單個字符blog

    [] :匹配在括號內的任意單個字符get

    *  :匹配0個或多個*前面的字符class

    ^ :匹配以^後面的字符開頭

    $ :匹配以$前面的字符結尾

    正則表達式具體學習能夠參考:http://www.runoob.com/regexp/regexp-tutorial.html

  select * from stu where tel rlike '^[0-9]$'; // 查詢stu表中tel全爲數字的行
相關文章
相關標籤/搜索