4. Write a query to display the name, job title and salary of employee who do not have manager.

SELECT ename, job, sal FROM Empl WHERE mgr IS NULL;