HOW CAN I FIND MAX SAL ,ENAME FROM EMP TABLE.
Answers were Sorted based on User's Feedback
Answer / kanhu charan biswal
select ename, sal from emp where sal=(select max(sal) from
emp);
For see the max(sal) with ename departmentwise the query
will be:
select ename,sal from emp a
where sal in (select max(sal) from emp group by deptno);
For findout the nth highest salary with name, the query
will be:
select ename,sal from emp a
where &n=(select count(distinct sal) from emp b
where b.sal>=a.sal)
after execute the query it will ask you to pass a value
for 'n'.it stands for nth hiest salary
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / binod singh
SELECT max(Distinct sal),ename
FROM emp
/
SQL> select max(distinct salary) from employees;
MAX(DISTINCTSALARY)
-------------------
24000
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / ahmad nazmi
select ename , max(sal)
from emp
group by ename;
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / madhav
select ename from emp where sal=(select max(sal) from emp);
ENAME
---------
KING
--first execute the inner query like
select max(sal) from emp;
MAX(SAL)
---------
5000
--- after that salary value pass the outer query like
this
select ename from emp where sal=5000
ENAME
---------
KING
Email:thota.madhav@gmail.com
| Is This Answer Correct ? | 2 Yes | 6 No |
Answer / suresh kumar somayajula
SELECT ename,MAX(sal)
FROM EMP
GROUP BY ename;
| Is This Answer Correct ? | 9 Yes | 15 No |
Answer / ahmad nazmi
select ename , max(sal)
from emp
group by ename ;
| Is This Answer Correct ? | 4 Yes | 11 No |
What are tables in sql?
column A column b | output 10 7 | 10 5 8 | 8 7 -9 | 7 3 5 | 5 0 6 | 6 Write a sql query to print such output.
What are the advantages of pl sql over sql?
SQL Tuning, Oracle Server 10g: Why is the following hint invalid? SELECT /*+ first_rows parallel(table_name,paral_number)*/
how to run 'mysql' commands from a batch file? : Sql dba
i have a table emp and columns ename,empno,mgr_id,i need ename,manager name as result i.e employee respective manager.. example empno ename mgr_id 1 john 3 2 paul 3 3 smith 1 4 kevin 1 5 stewart 2 result has to look like this ename manager john smith paul smith smith john kevin john stewart paul can u plz help me out in this.....
Talk about views
what is the stuff function and how does it differ from the replace function? : Sql dba
What is sql prepared statement?
Is not null in sql?
What is nvarchar in sql?
How are sql commands classified?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)