SQL Query to find the Nth row in SQL 2005

SQL Query to find the Nth row in SQL 2005


CREATE procedure sample_procedure
@val int
as
select min(employeeid) from employees where employeeid in
(select Top @val employeeid from employees order by employeeid desc)
GO


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: