wat will be the sql query to extract only last 3 records
from table supose table hving thousands for records
Answer Posted / kumar
You will be do following things one by one in sql server.
first create table.
1.create table tablename(sno int identity(1,1) primar key,
names varchar(100))
insert the record one by one.
2.
Insert into tablename(names) values ('arun')
Insert into tablename(names) values ('arun')
Insert into tablename(names) values ('arun')
Insert into tablename(names) values ('arun')
.
.
.
.
To Insert 1000 record one by one.
Then to execute the following query to get last 3 record.
select top 3 * from tablename
order by 1 desc
you will be get the correct answer ok.
By
kumar
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How do I start sql server?
What security features are available for stored procedure?
How the authentication mode can be changed?
Where is trigger in sql server?
What does COMMIT command do?
How to find the list of fixed hard drive and free space on server?
What is subquery explain with example?
what is the information that can be stored inside a bit column? : Sql server database administration
How to convert a numeric expression from one data type to another?
What is the security model used in sql server 2005?
What do you understand by user-defined function in the sql server?
Explain about system stored procedure?
List down some advantages of sql stored procedure?
Can a database be shrunk to 0 bytes, if not, why?
Are all views updatable ?