wat will be the sql query to extract only last 3 records
from table supose table hving thousands for records
Answer Posted / nitesh srivastava
select * from emp
minus
select * from emp where rownum<(select count(*)-2 from emp)
Is This Answer Correct ? | 8 Yes | 10 No |
Post New Answer View All Answers
What is transaction server explicit transaction?
what are cursors? : Sql server database administration
What is meant by datasource?
Introduction of rollup clause using sum and group by clause?
Explain what are the authentication modes in sql server?
What is database replication?
What are dml (data manipulation language) statements in ms sql server?
How to create a large table with random data for index testing in ms sql server?
Does dbcc checkdb requires db to be in single_user mode? : sql server database administration
Write a sql query to sort on different column name according to the parameters passed in the function?
Explain isolation levels that sql server supports?
What is extent? Types of extents?
What are the different types of normalization?
What are the methods used to protect against sql injection attack?
Explain encryption of entire databases without the need for application changes in sql server 2008?