Write the query to get the employee details whose name started within any letter between A and K 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