From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / kvsd
select * from employees where salary = (select max(salary)
from employees)
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is primary key and foreign key with example?
What is trigger in sql? Explain
How do I tune a sql query?
What does rownum mean in sql?
Can delete statement be rollbacked?
What is set transaction?
how to implement one-to-one, one-to-many and many-to-many relationships while designing tables? : Sql dba
What is sql engine in oracle?
Which command is used to delete a package?
What are records give examples?
How do you add a column to a table?
What are the most important characteristics of pl/sql?
Are sql database names case sensitive?
how to create a new view in mysql? : Sql dba
What is difference between pl and sql?