Select all where [first letter starts with B]
This will work for MYSQL
SELECT Name FROM Employees WHERE Name REGEXP '^[B].*$'
In this REGEXP stands for regular expression
and
this is for T-SQL
SELECT Name FROM Employees WHERE Name LIKE '[B]%'
SELECT author FROM lyrics WHERE author LIKE 'B%';
Make sure you have an index on author
, though!