Computer Science, asked by ssen2968, 10 months ago

Display the first name & salary of all the employees who are getting salary greater than "Bruce".

Answers

Answered by saisivakumar897
3

Answer:

SELECT first_name, salary

FROM hr.employees

WHERE salary > ( SELECT salary

   FROM hr.employees

                        WHERE first_name='Bruce')

Explanation:

Similar questions