Find the second largest number Sql-second highest Salary

Source: Internet
Author: User
Tags mysql query

1: Find the largest maximum

Select Max (Salary) from the employee where salary< (select Max (Salary) from employee);

2. Sorting

Select  Salary from employee where Salary not in (select MAX (Salary) from employee) Order BY Salary desc LIMIT 1;

  

Select (select DISTINCT Salary from Employee order by Salary Desc limit 1 offset 1) as secondheighestsalary;

  

Find Nth Number:

CREATE FUNCTION getnthhighestsalary (N INT) RETURNS intbegindeclare M int;set n=n-1;  RETURN (           # Write your MySQL query statement below.      Select  Salary from Employee ORDER BY Salary desc LIMIT 1 offset N  ); END

  

CREATE FUNCTION getnthhighestsalary (N INT) RETURNS intbegindeclare M int;set n=n-1;  RETURN (           # Write your MySQL query statement below.      Select  distinct Salary from Employee ORDER BY Salary desc LIMIT 1 offset N  ); END

You can't N-1 in limit, because the limit doesn't count.

Haha: distinct: May contain duplicate values in a table, return unique values,

Find the second largest number Sql-second highest Salary

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.