mysql starts with letter code example
Example 1: sql print all names that start with a given letter
select employee_name
from employees
where employee_name LIKE 'A%' OR employee_name LIKE 'B%'
order by employee_name
Example 2: mysql select where starts with
SELECT author FROM lyrics WHERE author LIKE 'B%';