how to select 5 to 7 rows from a table, which contains 10 rows?
Answer Posted / priyanka
select top 3 * from emp where id not in
(select top 4 id from emp order by id)
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain the concept of view and Types of views in SQL server?
What are policy management terms?
How to add a new column to an existing table with "alter table ... Add" in ms sql server?
Can I use sql azure as a backup with log shipping or database mirroring?
How to enforce security in sql server? : sql server security
You have to store user responses of ‘yes’ and ‘no’ what kind of data type is best suited for this task?
Why you need indexing? Where that is stored and what you mean by schema object? For what purpose we are using view?
What is nonclustered index on computed columns?
Tell me about normalization in DBMS.
What are xml indexes?
What are different types of join?
What is serializable?
Explain something about security and SQL Azure?
What is pivot and unpivot?
What is 2nf example?