how to get top two salaries from employee tables
Answers were Sorted based on User's Feedback
Answer / rituparna
select salary from (select salary from emp order by salary
desc)
where rownum < 3;
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / maruti
select max(sal)
from emp
where sal < (select max(sal) from emp);
with this query u ll get second largest sal of that table
if u want to know max (sal) then it ll be...
select Max(sal)
from emp;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / varu
This will be right answer for the query
Select * from empsal e where 2<=(select count(*) from empsal f
where e.sal>f.sal) order by sal desc
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / charan
hi this is charan,
select e1 *from employees e1
where 2>
( select column(distincte2.sal)
where e2.sal>e1.sal )
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / shiva - e-softsys
SELECT MIN (SALARY) FROM EMP WHERE
SALARY IN (SELECT DISTINCT TOP 2 SALARY FROM EMP ORDER BY
SALARY DESC)
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / rajendra prasad reddy penumall
this is a SQL query
SELECT DISTINCT salary FROM employee WHERE(max(salary))
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / sivaprasad
SELECT MIN(SALARY) FROM EMP WHERE SALIN(DISTINCT TOP2
SALARY FROM EMP ORDER BY SALARY DESC.
OR
SELECT TOP 2 SALARY FROM EMP ORDER BY SALARY DESC.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / varu
writing this way is also correct
select sal
from empsal
where id > 2
order by sal desc
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between Client server and web based systems?
What is P.M Round? What type of questions are they asking? ? If know anybody Plz Post to my mail ID (SwetharaoQA@rediffmail.com) Thank U
where did u gather requirements? what is user acceptance testing? in real time plz send me as early as possible?
What is the difference between Developer and programmer?
What is the Regression Testing Process followed in your company?
Explain Automation Vs Manual Testing?
What are different types of metrics used in testing ?
how to indentify memory leakages after the build
hi ,, what is testing methodologies ,and what is test strategy pls tel me ... advance thanks for all
i am in a small size software house join as a Jnr. software Testing Engineer so here is project is on Coding and almost finished stage, no Test cases or any QA activities done b4 now can any body explain me how can i continue... m realy depresd coz m just doing manual testing by running the process n m good in this phase but i wanna know abt is QA is just doing that way....plz help me
1.how you know all test cases are cover in one application? 2.what is difference between error message and warning message ? 3.what are the items comes under traceabily materix?
Hello every one.I want to learn Manual Testing. I'm new to Testing.can anyone send me Manual testing books or any free download links?