how to find nth lowest salary

Answers were Sorted based on User's Feedback



how to find nth lowest salary..

Answer / liju

nth lowest
nth lowest
*******************************************************
SELECT DISTINCT (A.sal) FROM EMP A WHERE (N-1) =

(SELECT COUNT (DISTINCT (b.sal)) FROM EMP B

WHERE b.sal<a.sal);

nth highest
*******************************************************
SELECT DISTINCT (A.sal) FROM EMP A WHERE (N-1) =

(SELECT COUNT (DISTINCT (b.sal)) FROM EMP B

WHERE b.sal>a.sal);

Is This Answer Correct ?    14 Yes 3 No

how to find nth lowest salary..

Answer / hari.sidd

SELECT DISTINCT (A.sal) FROM EMP A WHERE &N =

(SELECT COUNT (DISTINCT (b.sal)) FROM EMP B

WHERE a.sal>=b.sal);

Is This Answer Correct ?    7 Yes 0 No

how to find nth lowest salary..

Answer / mohd javed

For All SQL , Tested in PostgresSQL : Javedcc@gmail.com

SELECT * FROM <Table_Name> A
WHERE N = (SELECT COUNT(DISTINCT B.Column_Name ) FROM
<Table_Name> B WHERE A.Column_Name >= B.Column_Name)

Is This Answer Correct ?    8 Yes 6 No

how to find nth lowest salary..

Answer / ezhumalai

with cte
as
(
select Salary,row_number() over ( order by Salary asc)rnt from EMP
)select * from cte where rnt=2

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Postgre Interview Questions

when will data in the data base is updated

3 Answers   IEG,


What is pg_toast?

0 Answers  


Does creating an index lock the table?

0 Answers  


What is postgresql? Explain the history of postgresql.

0 Answers  


Does toad work with postgres?

0 Answers  






What is shared buffer in postgres?

0 Answers  


How do you create a table in pgadmin 4?

0 Answers  


How do you delete a row in pgadmin 4?

0 Answers  


Compare ‘postgresql’ with ‘nosql’?

0 Answers  


What is a sequence table in postgresql?

0 Answers  


What is the difference between a primary key and a composite key?

0 Answers  


Is postgresql cloud based?

0 Answers  


Categories