Write an SQL query to retrieve the names of employees whose names start with 'A'.

Last Updated :
Discuss
Comments

Write an SQL query to retrieve the names of employees whose names start with 'A'.

SELECT name FROM employees WHERE name LIKE 'A%';

SELECT name FROM employees WHERE name = 'A%';

SELECT name FROM employees WHERE name LIKE '%A';

SELECT name FROM employees WHERE name = '%A%';

Share your thoughts in the comments