how to retrive only second row from table in sql server
2000?

Answers were Sorted based on User's Feedback



how to retrive only second row from table in sql server 2000?..

Answer / lekhraj

select top 1 * from(select top 2 * from tbl_test order by 1
asc) as at order by 1 desc

Is This Answer Correct ?    24 Yes 5 No

how to retrive only second row from table in sql server 2000?..

Answer / dileep.t

----------------------------------
:), This will also work, without additional columns in
result
---------------------------------

DECLARE curTemp SCROLL CURSOR FOR
SELECT TOP 2 * from <TABLE_NAME>
OPEN curTemp
FETCH LAST FROM curTemp
CLOSE curTemp
DEALLOCATE curTemp

Is This Answer Correct ?    12 Yes 2 No

how to retrive only second row from table in sql server 2000?..

Answer / suresh

Hi,

select top 1 * from (SELECT TOP 2 * from emp) A Order by
empno desc

Is This Answer Correct ?    16 Yes 9 No

how to retrive only second row from table in sql server 2000?..

Answer / yogesh

select top 1 from tablename where id <(select top 1 id from
test)

Is This Answer Correct ?    5 Yes 0 No

how to retrive only second row from table in sql server 2000?..

Answer / arun kumar k s

drop table #temp select top 2 identity(int,1,1) as SlNo, *
into #temp from TABLE_NAME select * from #temp where SlNo=2

Is This Answer Correct ?    7 Yes 5 No

how to retrive only second row from table in sql server 2000?..

Answer / ravi148

hi,

dileep is exactly correct , arun .. iam sorry to say ur
wrong

suppose for employee table, write as
DECLARE curTemp SCROLL CURSOR FOR
SELECT TOP 2 * from EMPLOYEE
OPEN curTemp
FETCH LAST FROM curTemp
CLOSE curTemp
DEALLOCATE curTemp

Is This Answer Correct ?    4 Yes 2 No

how to retrive only second row from table in sql server 2000?..

Answer / shashikant

select min(id) from cms_dfm where id in (SELECT TOP 2 ID
from CMS_DFM Order by
ID desc)

Is This Answer Correct ?    6 Yes 4 No

how to retrive only second row from table in sql server 2000?..

Answer / belson gnana pradeep

SELECT TOP 1 salary FROM
(SELECT DISTINCT TOP 2 salary FROM employee
ORDER BY salary DESC) a ORDER BY salary

Is This Answer Correct ?    2 Yes 0 No

how to retrive only second row from table in sql server 2000?..

Answer / vardharaj

SELECT TOP 1 ID FROM TABLENAME WHERE ID NOT IN (SELECT TOP 1
ID FROM TEST)

Is This Answer Correct ?    2 Yes 1 No

how to retrive only second row from table in sql server 2000?..

Answer / surenda tarai

select top 1 * from(select top 3 * from tablename order by 1
asc) as at order by 1 desc

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

how many triggers you can have on a table? : Sql server database administration

0 Answers  


what are candidate key, alternate key and composite key? : Sql server database administration

0 Answers  


How do I find information about the install locations for the various instances running on a computer?

0 Answers  


How can you get @@error and @@rowcount at the same time?

9 Answers  


system date format is "yy-mm-dd" "select getdate()" ----> 2009-01-24 20:03:28.513 if i write "select dateadd(dd,2,getdate()) ".it returns "2009-01-26 19:59:38.340"...my question is dat could it be possible to retrive da date in da format "26 jan 2009 ...."??

8 Answers  






List few advantages of stored procedure.

0 Answers  


Delete duplicate records from the table?(Table must have unique id)

7 Answers   TCS, Thomson Reuters,


What is the cartesian product of table?

0 Answers  


sql server architecture ?

0 Answers  


How many types of dimensions are there and what are they? : sql server analysis services, ssas

0 Answers  


What the different components of Replication and what is their use?

0 Answers  


Explain the dbcc pintable command when would you use it?

0 Answers  


Categories