How to select the name of employee who is getting maximum
sal with out using subquery
Answer Posted / neha
select a.ename from (select ename from emp ORDER BY SAL
desc,ROWNUM DESC)a
where rownum=1;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What privilege is needed for a user to insert rows to tables in another schema?
Differentiate between function and procedure in oracle.
What are the oracle differences between nvl and coalesce
How to estimate disk space needed for an export job?
How do you store pictures in a database?
When do we use group by clause in a sql query?
What is an oracle cursor variable?
What do you mean by group by clause?
Explain how are indexes update?
How to create a new view in oracle?
How to view all columns in an existing table?
What are the execution control statements in oracle?
What is open database communication (odbc) in oracle?
How to import one table back from a dump file?
How to execute the package in oracle?