How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / shilpa
with temp
as
( select row_number() over(order by city) rowid, * from
employee)
select * from temp
where rowid >= 10
and rowid <= 20
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is impersonation? What are the different impersonation options available in ssas? : sql server analysis services, ssas
Explain acid?
What is SQL Server?
How to include text values in sql statements?
How can we solve concurrency problems?
Explain difference between control flow and data flow?
Explain alternate key, candidate key and composite key in sql server?
What is sql or structured query language?
1.how to find the dead lock in sql server? 2.How to fine the memory leaks in sql server? 3.suppose transaction log file increasing what action will take ?
mention different types of relationships in the dbms?
What is advantage data architect?
What is sub-query in sql server?
Can binary strings be converted into numeric or float data types?
How many types of dimensions are there and what are they? : sql server analysis services, ssas
How do you make a trace?