SQL查询以某个字母开头

select * from a where left(a.name, 1)='H'; 

select * from a where a.name REGEXP ''^(B|S)'';

原文地址:https://www.cnblogs.com/cai170221/p/9166862.html