find out the third highest salary?
Answers were Sorted based on User's Feedback
Answer / ashutosh pandey
select sal from emp
where sal=(select min(sal) from emp
where sal>(select min(sal) from emp
where sal>(select min(sal) from emp);
| Is This Answer Correct ? | 69 Yes | 204 No |
13. Display the second to fifth characters in each client name.
two tables are there emp(eno,ename,sal,deptno),dept(deptno,dname).how form the query in deptno,ename,max(sal)
How to execute a stored program unit?
How to check the server version in oracle?
What is transaction control statement and how many types of transaction control statement in Oracle?
What is an oracle recycle bin?
Is oracle an open source?
How to view existing locks on the database?
What are the tools for Oracle ?
What happens if variable names collide with table/column names?
Do View contain Data ?
What are nested tables?