how to find the particular row in table?(means suppose one
table contain 10 rows , in these 10 rows how to find the
particular row(example in 10 rows i want 5 row how)?
Answer Posted / vishnu
select top 1 * from (select top 5 * from employee order by
empid)sub order by empid desc
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to invoke a trigger on demand?
What is collation sensitivity?
Tell me in brief how sql server enhances scalability of the database system?
What is key attribute?
What is store procedure?
Why I am getting this error when dropping a database in ms sql server?
What is index, cluster index and nonclustered index?
Do you know what are the ways available in sql server to execute sql statements?
How many columns can we include on clustered index ?
What are clustered and non-clustered index?
What is function of CUBE ?
How to find table changes in sql server?
Explain about temporary stored procedure?
How to loop through result set objects using mssql_fetch_array()?
What type of Index will get created after executing the above statement?