Sail E0 Webinar
Question
Write a query to display first_name and last_name of all employees who have their first_name starting with 'A'
Options:
A .  Select first_name from employess where first_name LIKE '%A';
B .  Select first_name from employess where first_name LIKE "'A'%";
C .  Select first_name from employess where first_name LIKE 'A%';
D .  Select first_name from employess where first_name LIKE '%A%';
Answer: Option C

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers