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 / guest
select top 1 * from table_name where id in(select top 5 id
from table_name order by desc)
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
What is a db view?
How can I know what locks are running on which resource?
Can sql server 2016 run on windows 7?
What is SQL Azure Firewall?
why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it? : Sql server administration
Explain an automatic checkpoint
What is tempdb database? : SQL Server Architecture
What is database dimension? : sql server analysis services, ssas
You want to implement the many-to-many relationship while designing tables. How would you do it?
What is Replication?
What is meant by indexing?
how to trace the traffic hitting a sql server? : Sql server database administration
What is sqlcmd?
What is normalization and what are the advantages of it?
Can you force a query to use a specific index?