how to get the salary in descending order with out using
the keyword desc in sql
Answer Posted / gourav
select salary from(select salary,rownum as r from (select salary from employees))
where r<9;
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
How many types of schemas are there?
What is Replication?
When to use null data driven subscription?
how to determine the service pack currently installed on sql server? : Sql server database administration
How do you send email on SQL Server?
What do you mean by data integrity?
What is extended stored procedures?
Explain a checkpoint?
How to scale out a federation by Sql statement?
Do you know what is bit data type and whats the information that can be stored inside a bit column?
How can I get data from a database on another server?
Explain user defined views?
What is sql server query analyzer?
What is co-related sub query?
Difference between DELETE and TRUNCATE?