<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Find Nth Highest Salary of Employee &#8211; Query to Retrieve the Nth Maximum value</title>
	<atom:link href="http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #023 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-450499</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #023 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 06 Apr 2013 01:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-450499</guid>
		<description><![CDATA[[...] Find Nth Highest Salary of Employee – Query to Retrieve the Nth Maximum value This question is quite a popular question and it is interesting that I have been receiving this question every other day. I have already answered this question here. “How to find the Nth Highest Salary of Employee”. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Find Nth Highest Salary of Employee – Query to Retrieve the Nth Maximum value This question is quite a popular question and it is interesting that I have been receiving this question every other day. I have already answered this question here. “How to find the Nth Highest Salary of Employee”. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azhar nawaz</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-447303</link>
		<dc:creator><![CDATA[Azhar nawaz]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 16:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-447303</guid>
		<description><![CDATA[Second Last Greater Number
 SELECT GrandTotal FROM
   ( SELECT GrandTotal,ROW_NUMBER() OVER(ORDER BY GrandTotal desc) As RowNum
      FROM def_ServiceProvider ) As A
    WHERE A.RowNum IN (2,3)]]></description>
		<content:encoded><![CDATA[<p>Second Last Greater Number<br />
 SELECT GrandTotal FROM<br />
   ( SELECT GrandTotal,ROW_NUMBER() OVER(ORDER BY GrandTotal desc) As RowNum<br />
      FROM def_ServiceProvider ) As A<br />
    WHERE A.RowNum IN (2,3)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pravin</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-436075</link>
		<dc:creator><![CDATA[Pravin]]></dc:creator>
		<pubDate>Tue, 12 Mar 2013 12:55:03 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-436075</guid>
		<description><![CDATA[select ename,sal from (select ename,sal from emp order by sal desc) where rownum&lt;=1;]]></description>
		<content:encoded><![CDATA[<p>select ename,sal from (select ename,sal from emp order by sal desc) where rownum&lt;=1;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-421368</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 13 Feb 2013 12:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-421368</guid>
		<description><![CDATA[This is specific to MySQL. But this site is for SQL Server]]></description>
		<content:encoded><![CDATA[<p>This is specific to MySQL. But this site is for SQL Server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-421323</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 13 Feb 2013 10:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-421323</guid>
		<description><![CDATA[Find lot of methods at http://beyondrelational.com/modules/2/blogs/70/posts/10790/find-nth-maximum-value.aspx]]></description>
		<content:encoded><![CDATA[<p>Find lot of methods at <a href="http://beyondrelational.com/modules/2/blogs/70/posts/10790/find-nth-maximum-value.aspx" rel="nofollow">http://beyondrelational.com/modules/2/blogs/70/posts/10790/find-nth-maximum-value.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ram</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-417525</link>
		<dc:creator><![CDATA[ram]]></dc:creator>
		<pubDate>Mon, 04 Feb 2013 07:34:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-417525</guid>
		<description><![CDATA[SELECT MAX(SAL) AS SAL FROM EMP WHERE SAL NOT IN
 (SELECT MAX(SAL) FROM EMP) its not working make it correct]]></description>
		<content:encoded><![CDATA[<p>SELECT MAX(SAL) AS SAL FROM EMP WHERE SAL NOT IN<br />
 (SELECT MAX(SAL) FROM EMP) its not working make it correct</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohanapriya</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-415763</link>
		<dc:creator><![CDATA[mohanapriya]]></dc:creator>
		<pubDate>Thu, 31 Jan 2013 12:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-415763</guid>
		<description><![CDATA[SELECT name, salary from emp order by salary desc  limit 0, 1]]></description>
		<content:encoded><![CDATA[<p>SELECT name, salary from emp order by salary desc  limit 0, 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shanth</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-397129</link>
		<dc:creator><![CDATA[shanth]]></dc:creator>
		<pubDate>Fri, 21 Dec 2012 12:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-397129</guid>
		<description><![CDATA[super...]]></description>
		<content:encoded><![CDATA[<p>super&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swarnika</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-395483</link>
		<dc:creator><![CDATA[swarnika]]></dc:creator>
		<pubDate>Tue, 18 Dec 2012 13:00:59 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-395483</guid>
		<description><![CDATA[very nice...]]></description>
		<content:encoded><![CDATA[<p>very nice&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cherry</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-393313</link>
		<dc:creator><![CDATA[cherry]]></dc:creator>
		<pubDate>Fri, 14 Dec 2012 16:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-393313</guid>
		<description><![CDATA[Hi all,

Help me to write an sql query ..  

suppose i have 4 departments. I need max salary in department(1) and 2nd highest salary in department(2) and third highest in dept(3) and least sal in 4th dept.

my table is like this

name         sal            dept
A             1000            1
B             1600            1
C             950              1
D            1050             1
E              960              2
F             800               2           
G             840              2
H              1010            2
I                 999                3
J                 970               3
K               1000              3
L                940               3
M               1200             4
N                1050             4
P                  888              4
R                  799              4

I WANT THE OUTPUT LIKE THIS:

NAME        SAL      DEPT
B             1600         1
E               960          2   -- SECOND HIGHEST IN DEPT
J                970          3  --  THIRD HIGHEST
R               799           4 --    4TH HIGHEST

Is it possible to do it in SQL or we have to go for PLSQL.  Please reply..

thanks in advance....]]></description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>Help me to write an sql query ..  </p>
<p>suppose i have 4 departments. I need max salary in department(1) and 2nd highest salary in department(2) and third highest in dept(3) and least sal in 4th dept.</p>
<p>my table is like this</p>
<p>name         sal            dept<br />
A             1000            1<br />
B             1600            1<br />
C             950              1<br />
D            1050             1<br />
E              960              2<br />
F             800               2<br />
G             840              2<br />
H              1010            2<br />
I                 999                3<br />
J                 970               3<br />
K               1000              3<br />
L                940               3<br />
M               1200             4<br />
N                1050             4<br />
P                  888              4<br />
R                  799              4</p>
<p>I WANT THE OUTPUT LIKE THIS:</p>
<p>NAME        SAL      DEPT<br />
B             1600         1<br />
E               960          2   &#8212; SECOND HIGHEST IN DEPT<br />
J                970          3  &#8212;  THIRD HIGHEST<br />
R               799           4 &#8212;    4TH HIGHEST</p>
<p>Is it possible to do it in SQL or we have to go for PLSQL.  Please reply..</p>
<p>thanks in advance&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ipsita</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-390951</link>
		<dc:creator><![CDATA[ipsita]]></dc:creator>
		<pubDate>Tue, 11 Dec 2012 01:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-390951</guid>
		<description><![CDATA[drop is to drop a table like drop table tablename we can aso drop a store procedure,like drop proc pocname,.
delete is to delete the record.like:delete from tablename where id=1,
truncate is to completly eradicate all the records.
hope this will help u.]]></description>
		<content:encoded><![CDATA[<p>drop is to drop a table like drop table tablename we can aso drop a store procedure,like drop proc pocname,.<br />
delete is to delete the record.like:delete from tablename where id=1,<br />
truncate is to completly eradicate all the records.<br />
hope this will help u.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viru</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-382561</link>
		<dc:creator><![CDATA[viru]]></dc:creator>
		<pubDate>Wed, 28 Nov 2012 13:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-382561</guid>
		<description><![CDATA[Hi Dixit, You are not right. because it could be possibility that some salary also duplicate ..so you should use distinct keword as well.]]></description>
		<content:encoded><![CDATA[<p>Hi Dixit, You are not right. because it could be possibility that some salary also duplicate ..so you should use distinct keword as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ramesh</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-382031</link>
		<dc:creator><![CDATA[ramesh]]></dc:creator>
		<pubDate>Tue, 27 Nov 2012 13:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-382031</guid>
		<description><![CDATA[select MIN(STUDENT_ID) from TBL_STUDENT where STUDENT_ID in(  select distinct top N student_id from TBL_STUDENT order by STUDENT_ID desc)]]></description>
		<content:encoded><![CDATA[<p>select MIN(STUDENT_ID) from TBL_STUDENT where STUDENT_ID in(  select distinct top N student_id from TBL_STUDENT order by STUDENT_ID desc)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amolpunse</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-379247</link>
		<dc:creator><![CDATA[amolpunse]]></dc:creator>
		<pubDate>Fri, 23 Nov 2012 09:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-379247</guid>
		<description><![CDATA[@Pinal 

Thanks for different way of writing query but how would you find 2nd highest salary of employees, if 2 or more employees having same salary which is second highest salary

Please let me know

Thanks,
Amol P]]></description>
		<content:encoded><![CDATA[<p>@Pinal </p>
<p>Thanks for different way of writing query but how would you find 2nd highest salary of employees, if 2 or more employees having same salary which is second highest salary</p>
<p>Please let me know</p>
<p>Thanks,<br />
Amol P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: German Alex</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-377242</link>
		<dc:creator><![CDATA[German Alex]]></dc:creator>
		<pubDate>Tue, 20 Nov 2012 08:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-377242</guid>
		<description><![CDATA[(TableName=Student, ColumnName=Mark) :=&gt;

select *from student where mark=(select mark from(select row_number() over (order by mark desc) as t,mark from student group by mark) as td where t=2)]]></description>
		<content:encoded><![CDATA[<p>(TableName=Student, ColumnName=Mark) :=&gt;</p>
<p>select *from student where mark=(select mark from(select row_number() over (order by mark desc) as t,mark from student group by mark) as td where t=2)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-376413</link>
		<dc:creator><![CDATA[Prashant]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 04:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-376413</guid>
		<description><![CDATA[SELECT MIN (SALARY )
FROM UEXAMPLE1
WHERE SALARY IN (SELECT DISTINCT TOP 4 SALARY FROM UEXAMPLE1 ORDER BY SALARY DESC),


SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP 6 salary
FROM employee
ORDER BY salary DESC) a
ORDER BY salary


both the queries are not woking in oracle it gives the error FROM keyword not found where expected]]></description>
		<content:encoded><![CDATA[<p>SELECT MIN (SALARY )<br />
FROM UEXAMPLE1<br />
WHERE SALARY IN (SELECT DISTINCT TOP 4 SALARY FROM UEXAMPLE1 ORDER BY SALARY DESC),</p>
<p>SELECT TOP 1 salary<br />
FROM (<br />
SELECT DISTINCT TOP 6 salary<br />
FROM employee<br />
ORDER BY salary DESC) a<br />
ORDER BY salary</p>
<p>both the queries are not woking in oracle it gives the error FROM keyword not found where expected</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ram sharan</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-367602</link>
		<dc:creator><![CDATA[ram sharan]]></dc:creator>
		<pubDate>Thu, 01 Nov 2012 18:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-367602</guid>
		<description><![CDATA[select top 1 salary
 from ( select distinct top 2 salary 
        from Salary order by  salary desc)a order by salary what is meaning of a after from () a order by salary]]></description>
		<content:encoded><![CDATA[<p>select top 1 salary<br />
 from ( select distinct top 2 salary<br />
        from Salary order by  salary desc)a order by salary what is meaning of a after from () a order by salary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mithlesh</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-361109</link>
		<dc:creator><![CDATA[mithlesh]]></dc:creator>
		<pubDate>Wed, 17 Oct 2012 11:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-361109</guid>
		<description><![CDATA[sir please tell me suppose election polloing application that different categories
and find out highest votes in one by one categories]]></description>
		<content:encoded><![CDATA[<p>sir please tell me suppose election polloing application that different categories<br />
and find out highest votes in one by one categories</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prabakaran</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-358743</link>
		<dc:creator><![CDATA[prabakaran]]></dc:creator>
		<pubDate>Thu, 11 Oct 2012 11:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-358743</guid>
		<description><![CDATA[select max(sal) from emp where sal&lt;(select max(sal) from emp);]]></description>
		<content:encoded><![CDATA[<p>select max(sal) from emp where sal&lt;(select max(sal) from emp);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paramasivan B</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-354140</link>
		<dc:creator><![CDATA[Paramasivan B]]></dc:creator>
		<pubDate>Sat, 29 Sep 2012 06:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-354140</guid>
		<description><![CDATA[Ya it is easily understand thanks]]></description>
		<content:encoded><![CDATA[<p>Ya it is easily understand thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suraj rai</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-350517</link>
		<dc:creator><![CDATA[suraj rai]]></dc:creator>
		<pubDate>Tue, 18 Sep 2012 16:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-350517</guid>
		<description><![CDATA[its not working 
so post right ans]]></description>
		<content:encoded><![CDATA[<p>its not working<br />
so post right ans</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nakul</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-347206</link>
		<dc:creator><![CDATA[nakul]]></dc:creator>
		<pubDate>Fri, 14 Sep 2012 22:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-347206</guid>
		<description><![CDATA[SELECT MAX(SALARY) FROM EMPLOYEE WHERE SALARY NOT IN (SELECT MAX(SALARY) FROM EMPLOYEE)]]></description>
		<content:encoded><![CDATA[<p>SELECT MAX(SALARY) FROM EMPLOYEE WHERE SALARY NOT IN (SELECT MAX(SALARY) FROM EMPLOYEE)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manveer Singh</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-342461</link>
		<dc:creator><![CDATA[Manveer Singh]]></dc:creator>
		<pubDate>Mon, 10 Sep 2012 08:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-342461</guid>
		<description><![CDATA[Thanks...........Its.....such helpful...]]></description>
		<content:encoded><![CDATA[<p>Thanks&#8230;&#8230;&#8230;..Its&#8230;..such helpful&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jigs</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-342031</link>
		<dc:creator><![CDATA[Jigs]]></dc:creator>
		<pubDate>Sat, 08 Sep 2012 15:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-342031</guid>
		<description><![CDATA[display top 2 salary holder&#039;s from emp table]]></description>
		<content:encoded><![CDATA[<p>display top 2 salary holder&#8217;s from emp table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhinav Ranjan Sinha</title>
		<link>http://blog.sqlauthority.com/2008/04/02/sql-server-find-nth-highest-salary-of-employee-query-to-retrieve-the-nth-maximum-value/#comment-341438</link>
		<dc:creator><![CDATA[Abhinav Ranjan Sinha]]></dc:creator>
		<pubDate>Thu, 06 Sep 2012 10:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=556#comment-341438</guid>
		<description><![CDATA[select emp_name,salary from salary_tab where salary=(select max(salary) from salary_tab)]]></description>
		<content:encoded><![CDATA[<p>select emp_name,salary from salary_tab where salary=(select max(salary) from salary_tab)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
