Thread
:
how to find third highest record from table?
View Single Post
#
3
(
permalink
)
10-13-2006, 12:03 AM
manithan
Posts: n/a
MS SQL
answer.
Re: how to find third highest record from table?
[sql]Select top 3 columnname from tablename
order by callsanswered DESC[/sql]
manithan