Answers for "how to find highest number in sql"

SQL
0

find lowest number in sql

SELECT first_name, last_name, salary, job_id
FROM employees
WHERE salary = (SELECT MIN(salary) FROM employees);
Posted by: Guest on January-28-2021
5

sql display max value

SELECT MAX(<numeric column>) FROM <table>;
SELECT MAX(<numeric column>) FROM <table> GROUP BY <other column>;
Posted by: Guest on April-01-2020

Code answers related to "how to find highest number in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language