How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)

Answer Posted / santosh dwivedi

select * from
(
select rownum r,a.* from TableName a
)
where r>=10 and r<=20

Is This Answer Correct ?    14 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it possible for a stored procedure to call itself or recursive stored procedure?

515


Is it true that rules do not apply to data already existing in a database at the time the rule is created?

571


What is normalization and denormalization in sql server?

547


What is the difference between local and global temporary tables?

594


Define self join in sql server joins?

531






What is the purpose of optimization?

556


How much memory that we are using in Logshipping Concept?

1372


What is difference between clustered and non clustered index?

539


List the different types of collation sensitivities in sql server?

547


What are sparse columns?

588


What do you know about normalization and de- normalization?

477


State a few properties of relational databases?

670


Types of Authentications in Sql Server? How user gets authenticated through windows authentication?

573


How to see the event list of an existing trigger using sys.trigger_events?

575


What are the diifferences between the ms sql server vs mysql?

661