How to select the name of employee who is getting maximum
sal with out using subquery
Answer Posted / rohit
SELECT ENAME,SAL FROM EMP
WHERE ROWNUM = 1
ORDER BY SAL DESC
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
How to revoke create session privilege from a user in oracle?
What happens if variable names collide with table/column names?
What is a package ? What are the advantages of package ?
How to get execution path reports on query statements?
List out the types of joins.
What is the relation of a user account and a schema in oracle?
How do you get nicely formatted results from an oracle procedure that returns a reference cursor?
How to display row numbers with the records?
What is an oracle wallet?
How to count groups returned with the group by clause in oracle?
Where are the settings stored for each instance in oracle?
How to select some columns from a table in oracle?
What is system tablespace?
What is difference between truncate and delete?
What happens if recursive calls get out of control?