Answers for "how to find maximum salary in sql"

SQL
1

how to find max and min salary in sql

SELECT MAX(salary), MIN(salary) FROM employees;
Posted by: Guest on May-09-2021
0

first max salary in sql

SELECT first-name
FROM employees
WHERE salary = (SELECT MAX(salary) FROM employees);
Posted by: Guest on January-28-2021
-1

max 3 salary in sql

SELECT salary, first_name, last_name FROM employees
ORDER BY salary DESC LIMIT 3;
Posted by: Guest on January-28-2021

Code answers related to "how to find maximum salary in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language