mysql之用正則表達式進行搜索

使用正則表達式進行搜索(regexp) 1. 「.」 :匹配任意一個字符 比如「.000」能匹配「1000」和「2000」。 select * from h_info where l_id regexp 「.0」; 2. 「|」 :爲搜索兩個串之一(或者爲這個串,或者爲另一個串) select * from h_info where l_id regexp 「.0|3.」; 表示檢索l_id個位是
相關文章
相關標籤/搜索