how to retrieve the top 3 salaries of the table using rownum
Answer Posted / chandrasekar.ramasamy
select sal from( select rownum,e.* from empmaster e order
by sal desc) where rownum < 4
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
what is the difference between blob and text? : Sql dba
Hi how to import oracle sequence in Informatica? Please write stored procedure code that will import oracle sequence in Informatica SP transformation as per below scenario Oracle table product list Pro_id, pro_name 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights Now a new flat file with new product list needs to be added to oracle table product list with oracle sequence. flat file product Prono,pro_name, 1, 20 watt tube light 2, 30 watt tube light & target should be like 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights. 104, 20 watt tube light 105, 30 watt tube light thks reg suvarna joshi suvarnaatsuvarna@rediffmail.com
How many types of triggers exist in pl/sql?
How do I restart sql?
What does the sign mean in sql?
what is a trigger? : Sql dba
What are schema-level triggers?
State some properties of relational databases?
What is sap sql anywhere?
Are subqueries faster than joins?
How to add new employee details in an employee_details table with the following details
What are instead of triggers?
Name three sql operations that perform a sort.
What is the difference between alter trigger and drop trigger statements?
Why indexing is needed?