From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / aruna parulekar
select * from employee where sal=(select max(sal) from
employee);
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
What is varchar used for?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
Explain the working of foreign key?
What is data control language (dcl)?
Does pl sql work in mysql?
How to pipe multiline string to isql?
what are the security recommendations while using mysql? : Sql dba
What is %rowtype in pl sql?
What does := mean in pl sql?
Which are the different types of indexes in sql?
What does select * from mean in sql?
How can we make an if statement within a select statement?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
how to get a list of columns in an existing table? : Sql dba
How do you delete duplicates in sql query using rowid?