Answers

Question and Answer:

  Home  DB Development

⟩ How to find the first two highest salaries in deptno in emp table?

if u want select the second highest salary from the emp

table then u have to write query as

select max(salary) from emp where

salary < ( select max(salary) from emp )

 181 views

More Questions for you: