mysql中正则表达式的性能要高于like,所以这里总结一下正则表达式的使用. 正则表达式的模式及其含义: 下面举例说明其用法: 建表student: create table student(id int(6) auto_increment,name carchar(6),age int(3),primary key(id)); 插入数据: insert into student(name,age) values('xzb',20),('spal',22),('wgc',32); 1.^ se…