From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / hari
select max(sal) from employee;
or
select * from employee where sal in(select max(sal) from employee);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are types of indexes in sql?
What is the difference between between and in condition operators?
What is PL/SQL Records?
Is grant a ddl statement?
What is scalar data type in pl sql?
What is an exception in pl/sql?
What is cartesian join in sql?
Which is faster count (*) or count 1?
What trigger means?
What is online transaction processing (oltp)?
Can procedure in package be overloaded?
What is normalisation in sql?
Is sql port 1433 encrypted?
how do you control the max size of a heap table? : Sql dba
How do I view a sql trace file?