All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0101_0200.s0176_second_highest_salary.script.sql Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
# Write your MySQL query statement below
# #Medium #Database
SELECT ifnull(
                (SELECT distinct(Salary)
                 FROM Employee
                 ORDER BY Salary DESC
                 LIMIT 1
                 OFFSET 1), NULL) SecondHighestSalary;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy