how to find lowest in sql

Solutions on MaxInterview for how to find lowest in sql by the best coders in the world

showing results for - "how to find lowest in sql"
Laney
29 Mar 2017
1SELECT first_name, last_name, salary, job_id
2FROM employees
3WHERE salary = (SELECT MIN(salary) FROM employees);