Answers for "SQL find all the information about employee whose names start with letter A"

1

how to find employee names starts with in sql

• SELECT * FROM Employees
WHERE emp_name LIKE 'A%' ;

select employee_name 
from employees
where employee_name LIKE 'A%' OR employee_name LIKE 'B%'
order by employee_name
Posted by: Guest on January-28-2021

Code answers related to "SQL find all the information about employee whose names start with letter A"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language