From an Employee table, how will you display the record
which has a maximum salary?
Answers were Sorted based on User's Feedback
Answer / debjani chakraborty
Select * from Employee where salary in(select max(salary)
from Employee);
Is This Answer Correct ? | 58 Yes | 2 No |
Answer / kavitha nedigunta
select * from emp e,(select max(sal) sal
from emp)a
where e.sal= a.sal;
select * from emp
where sal in(select max(sal) from
emp);
Is This Answer Correct ? | 29 Yes | 3 No |
Answer / pradeep sahoo
Select * from Employee where sal = (select max(sal) frpm
Employee)
Is This Answer Correct ? | 25 Yes | 1 No |
Answer / sharmila
Select * from Employee where salary in(select max(salary)
from Employee)
Is This Answer Correct ? | 13 Yes | 1 No |
Answer / aruna parulekar
select * from employee where sal=(select max(sal) from
employee);
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / kvsd
select * from employees where salary = (select max(salary)
from employees)
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / os reddy
select * from emp
where sal=(select max(sal) from emp);
OR
select * from emp
where sal in(select max(sal) from emp);
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pradeep
To get nth rank salary or max salary two ways
below 5th
select ct , empno, sal from (SELECT max(rownum) ct , empno,
sal FROM emp group by empno, sal ORDER BY sal desc) where
ct =5;
below 2nd
select * from (
SELECT DEPTNO,ENAME,SAL,COMM,
RANK() OVER ( ORDER BY SAL DESC, COMM) poK from emp)
where pok =2;
Is This Answer Correct ? | 3 Yes | 1 No |
What are the limitations of sql express?
what is myisam? : Sql dba
Write the order of precedence for validation of a column in a table? I. Done using database triggers. Ii. Done using integarity constraints
what is the difference between truncate and drop statements? : Sql dba
Is sql port 1433 encrypted?
What is data profiling in sql?
What is anonymous block in sql?
how can we submit a form without a submit button? : Sql dba
which operator is used in query for pattern matching? : Sql dba
What is insert command in sql?
What are sql indexes?
What is crud diagram?