wat will be the sql query to extract only last 3 records
from table supose table hving thousands for records
Answer Posted / priya
select top 3 from <table name > where < specify any
condition> order by <column ID> desc
| Is This Answer Correct ? | 15 Yes | 16 No |
Post New Answer View All Answers
Where views are stored in sql server?
How to transfer a table from one schema to another?
Do you know clustered and non-clustered index?
What is the purpose of indexing?
Mention the differences between local and global temporary tables.
When would you use it?
Explain the different types of joins?
explain databases and sql server databases architecture? : Sql server database administration
What is merge replication?
What is @@error in sql?
What is a domain constraint give an example?
Why use cursor in sql server?
What are the different index configurations a table can have?
What is the difference between ddl,dml and dcl commands?
How to remove duplicate rows from table except one?