From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / dinesh kumar
select * from employee where salary =( select max(salary) from
employee);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does truncate mean in sql?
How to fetch values from testtable1 that are not in testtable2 without using not keyword?
What is normalization? How many normalization forms are there?
What are crud methods?
What is primary key secondary key alternate key candidate key?
How sql query is executed?
What is minus?
What is varchar example?
What are sql data types?
How do I create a sql script?
Is not null in sql?
What is sql*plus?
How do you determine the current isolation level? : Transact sql
What are the possible values for the boolean data field?
Is sqlexception checked or unchecked?