Answers for "Write the query to get the employee details whose name starts with any letter between A and K"

SQL
2

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
Posted by: Guest on June-13-2020

Code answers related to "Write the query to get the employee details whose name starts with any letter between A and K"

Code answers related to "SQL"

Browse Popular Code Answers by Language