From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / sharmila
Select * from Employee where salary in(select max(salary)
from Employee)
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
How much does sql certification cost?
What are different types of keys?
What is triggering circuit?
What is a file delimiter?
Does view store data in sql?
How to get unique records from a table?
how to include numeric values in sql statements? : Sql dba
Is primary key is clustered index?
What are sql built in functions?
Is drop table faster than truncate?
Can a procedure in a package be overloaded?
Define concurrency control. : Transact sql
How to Declare Fixed Length String Value In PL SQL
What is difference between joins and union?
What is program debugging?