πŸ“Š MySQL
Q. Write a query to display first_name and last_name of all employees who have their first_name starting with 'A'.
  • (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%';
πŸ’¬ Discuss
βœ… Correct Answer: (C) Select first_name from employess where first_name LIKE 'A%';

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
235
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Dharmendra Sir
Publisher
πŸ“ˆ
88%
Success Rate