Q. Write a query to display first_name and last_name of all employees who have their first_name starting with 'A'.
β
Correct Answer: (C)
Select first_name from employess where first_name LIKE 'A%';