Answers for "how to find lowest salary by departments ?"

SQL
0

how to find lowest salary by departments ?

SELECT 
    MIN(salary)
FROM
    employees
GROUP BY department_id
ORDER BY MIN(salary) DESC;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on April-28-2022

Code answers related to "how to find lowest salary by departments ?"

Code answers related to "SQL"

Browse Popular Code Answers by Language