摘要: 整理自清华大学出版社《MYSQL入门很简单》基本形式属性名 regexp ‘匹配方式’正则表达式的模式字符^ 匹配字符开始的部分eg1: 从info表name字段中查询以L开头的记录select * from info where name regexp '^L';eg2: 从info表name字段中查询以aaa开头的记录select * from info where name regexp '^aaa';$ 匹配字符结束的部分eg1: 从info表name字段中查询以c结尾的记录select * from info where name regexp  阅读全文
posted @ 2013-01-24 16:15 mguo 阅读(483) 评论(0) 推荐(0) 编辑