Thread
:
How to find second highest value of a column in a table? | SQL?
View Single Post
#
10
(
permalink
)
07-24-2007, 11:07 AM
Unregistered
Posts: n/a
ANY
answer.
Re: How to find second highest value of a column in a table? | SQL?
This is sekhar
[sql]select max(sal) from emp where sal< (select max(sal) from emp)[/sql]
Unregistered