consider a table which contain 4 columns,ename,eno,sal and
deptno, from this table i want to know ename who having
maximum salary in deptno 10 and 20.
Answers were Sorted based on User's Feedback
Answer / avinash
select ename from emp where sal in(select max(sal) from
emp) and deptno in(10,20)
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / praveen reddy.eddula
select ename from emp where sal in(select max(sal) from emp
where deptno in(10,20))
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swati pise
select top 1 * from table where dept_no in(10,20) order by
sal desc
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swati
select top 1 ename from emp where deptno in(10,20) order by
sal desc
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / lipika
Select Ename From emp where sal in (Select Max(Sal) From
emp where deptno in (10,20) group by deptno);
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / john
select dept_id,ename max(sal) from employee where dept_id
in ('1','2') group by dept_id;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pratdeor
Select ename from table where sal IN
(select Max(sal) over (partition by Deptno) as mxs from table) and Deptno IN (10,20);
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gautam
select ename,sal from emp
where sal in (select max(sal) from emp group by deptno)
and deptno in (10,20)
Gautam
Is This Answer Correct ? | 3 Yes | 4 No |
Answer / sp
select top 2 ename, salary, dept from dbo.employee where
dept in(10,20) order by salary desc
Is This Answer Correct ? | 1 Yes | 2 No |
How to call the function and Procedure in trigger?
Where can I learn sql for free?
Can ddl statements be used in pl/sql?
How long will it take to learn pl sql?
How to come back in normal stage in Mutating Table if mutating table is locked or update data?
What is the least restrictive isolation level? : Transact sql
What do you mean by field in sql?
What is acid property in a database?
what are the limitations of identity column? : Transact sql
What is sql*loader and what is it used for?
What is rowtype?
What are the components of a PL/SQL block ?