You can do this using the PATINDEX function and the LEFT function in combination:
SELECT * FROM Music WHERE PATINDEX('%[AZ ,az]%',LEFT(Title,1)) = 0
Edit: since you start searching for a non-alphabet character at the beginning, change to = 0, = 1 will return everything starting with an alphabetic character.
source share