find lowest number in sql

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

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