How can I find the second maximum number in an sql table | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

How can I find the second maximum number in an sql table

please suggest

26th Mar 2017, 11:14 AM
All Rounder _div
All Rounder _div - avatar
6 Answers
+ 5
SELECT MAX( column ) FROM table WHERE column < ( SELECT MAX(column) FROM table )
26th Mar 2017, 11:39 AM
Sai Raman
Sai Raman - avatar
+ 4
for that I think you have write a procedure in if else loop but if you want to go by a query I suggest you to have some relating attributes or a primary key so that you can manipulate to get the output.
29th Mar 2017, 1:33 PM
Jibin Philipose
Jibin Philipose - avatar
+ 2
Use the following syntax: SELECT <column_list> FROM table_name ORDER BY column_name DESC LIMIT BY 2; Hence, the second row from the result-set of the above query will show the second maximum number from the required column.
10th Apr 2017, 12:22 PM
Urvashi Jain
Urvashi Jain - avatar
+ 1
it gives error saying that max function cannot be used in above function
26th Mar 2017, 2:53 PM
All Rounder _div
All Rounder _div - avatar
+ 1
with result as ( select dense_rank() over(order by salary desc) as 'SecondMaximum',* from tablename ) select * from result where SecondMaximum=2;
27th Mar 2017, 5:44 AM
Akwin Lopez
Akwin Lopez - avatar
0
IF OBJECT_ID (N'Employee' , N'U' ) IS NOT NULL DROP TABLE Employee; CREATE TABLE Employee ( EmployeeId INT PRIMARY KEY , Salary Numeric( 18,2 ) ); Insert into Employee Values ( 101,20000.00 ); Insert into Employee Values ( 102,25000.00 ); Insert into Employee Values ( 103,30000.00 ); Insert into Employee Values ( 104,35000.00 ); Insert into Employee Values ( 105,35000.00 ); Insert into Employee Values ( 106,45000.00 ); SELECT * FROM Employee ; SELECT EmployeeId, Salary FROM ( Select EmployeeId, Salary, ROW_NUMBER() OVER(Order by Salary Desc) as Salary_Order from Employee ) DT WHERE DT. Salary_Order = 1 ;
27th Mar 2017, 5:44 AM
Akwin Lopez
Akwin Lopez - avatar