From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / sudeep mishra
select *
from employee
where salary = max sal
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain the methods used to protect source code of pl/sql.
When can we use the where clause and the having clause?
How do I edit a trigger in sql developer?
What are triggers and its types?
Explain the components of sql?
Can we use ddl statements in stored procedure sql server?
How would you reference column values before and after you have inserted and deleted triggers?
Can a varchar be a primary key?
What is restrict in sql?
What is the use of desc in sql?
Can we call procedure in select statement?
What are the different set operators available in sql?
How to add, remove, modify users using sql?
Can we group by two columns in sql?
How can get second highest salary in sql?