From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / apsar
select * from (select e.* from emp order by e.sal desc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is rank dense_rank and partition in sql?
How to move files from one directory to another in pl sql?
Can we perform dml in function?
What are the advantages of sql?
What is a full join?
How can we find duplicate records in a table?
Can sql developer connect to db2?
Write a program that shows the usage of while loop to calculate the average of user entered numbers and entry of more numbers are stopped by entering number 0?
What are inner outer left and right joins in sql?
Explain how can you save or place your msg in a table?
Why stored procedure is faster than query?
What is a recursive stored procedure?
How do you write an inner join query?
Can we call stored procedure in function?
Can we use threading in pl/sql?