Per intervallo di lettere contigue

select * from tabella where campo regexp '^[a-f]'

Per lettere non contigue le specifichi una ad una. Esempio

select * from tabella where campo regexp '^[b|d|f]'