Hi......
I have a table in Sql Server. I want to fetch third row from table without condition ? Please tell me anyone with an example and also tell me how to fetch third row from table in MySql and Oracle ?
Thanks.....
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kalyan BasaPosted Mar 6, 2012, 1:47 AM
SELECT TOP 1 * FROM (
SELECT TOP 3 * FROM CONTACTS
ORDER BY EMP_ID ASC
) A ORDER BY A.EMP_ID DESC
Hope this helps.
Thanks,
Kalyan Basa
Vineet Kumar SainiPosted Mar 12, 2012, 1:51 PM
Vineet Kumar SainiPosted Mar 4, 2012, 11:03 PM
SenthilkumarPosted Mar 4, 2012, 3:11 AM