how to select 5 to 7 rows from a table, which contains 10 rows?
Answer Posted / smitha
select * from (select row_number() over (order by empid) as
row, *
from employee)a
where a.row between 4 and 5
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
Explain what is meant by replication of database?
How to call a function from a stored procedure in SQL Server ?
Define a cross join?
Is sql server is free?
How do you improve the performance of a SQL Azure Database?
What is default constraint in ms sql server?
Determine how to use the inserted and deleted pseudo tables?
What is the use of nvl work?
Do you know what are different types of replication in sql server?
What is global temp table?
How to create dbo table in sql server?
How to add a new column to an existing table with "alter table ... Add" in ms sql server?
Any one plz send me SQL Server Developer/DBA resume for 4 years experience
List layers of abstraction microsoft architectured to provide relational db through cloud platform ?
Mention the different types of triggers?