Find out the 3rd highest salary?
Answer Posted / xxx
select ename, salary from
(Select ename, salary, rownum
FROM emp where rownum<=3
Order by salary )
where rownum = 1
;
| Is This Answer Correct ? | 7 Yes | 20 No |
Post New Answer View All Answers
What are sql*plus environment variables?
Why do we use function in pl sql?
What type of database is sql?
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
What is multiple partition?
What are three advantages to using sql?
What is the purpose of normalization?
What do you understand by pl/sql cursors?
What are sql injection vulnerabilities?
Is it mandatory for the primary key to be given a value when a new record is inserted?
explain advantages of innodb over myisam. : Sql dba
What is the non-clustered index in sql?
What are stored procedures in mysql?
What are inner and outer joins examples of both?
How delete all data from all tables in sql?