| Article: |
SQL Data Types | |
| Subject: | how do we find nth highest in SQL | |
| Date: | 2004-10-08 07:32:14 | |
| From: | gansin | |
| Please give the query for the finding the nth highest salary in SQL. | ||
Showing messages 1 through 5 of 5.
| Article: |
SQL Data Types | |
| Subject: | how do we find nth highest in SQL | |
| Date: | 2004-10-08 07:32:14 | |
| From: | gansin | |
| Please give the query for the finding the nth highest salary in SQL. | ||
Showing messages 1 through 5 of 5.
select * from qry1 where rownum=6;
This finds the 6th highest;