Write an SQL query to retrieve the names of employees who have 'Manager' in their job titles.

Last Updated :
Discuss
Comments

Write an SQL query to retrieve the names of employees who have 'Manager' in their job titles.

SELECT name FROM employees WHERE job_title = 'Manager';

SELECT name FROM employees WHERE job_title LIKE '%Manager%';

SELECT name FROM employees WHERE job_title = '%Manager%';

SELECT name FROM employees WHERE job_title LIKE 'Manager';

Share your thoughts in the comments