不是以数字开头 select * from mot_terms where `name` not REGEXP '^[0-9]'
不是以字母开头 select * from mot_terms where `name` not REGEXP '^[a-zA-Z]'
已数字和特殊字符开头 select * from mot_terms where `name` REGEXP '^[@#$%&0-9]'
转载:http://www.voidcn.com/article/p-hhnnlanm-ben.html
like语句
%:0或多个字符
_:一个字符,可以是数字