write a query to print unique employee name start with the letter a code example
Example: 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