How to select the name of employee who is getting maximum
sal with out using subquery
Answer Posted / srinu.g
select b.ename from emp b,(select max(sal) k from emp) a
where a.k=b.sal;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can we convert a date to char in oracle and if so, what would be the syntax?
Can we insert data in view oracle?
Name the three major set of files on disk that compose a database in Oracle?
How to build data dictionary view an new database?
What is ASM (Automatic Storage Management) in Oracle?
What is a data lock in oracle?
What happens in oracle commit?
How to write text literals in oracle?
How does the on-delete-cascade statement work?
What is oracle database client?
What exactly do quotation marks around the table name do?
How do you bind variables in oracle?
Explain the truncate in oracle?
How do I find the database name in oracle?
What is raw datatype?