Answer Posted / nag.vamshi
select* from(select ename,deptno,sal,row_number()
over(partiton by deptno order by sal)num from emp)
where num<=3
order by deptno;
| Is This Answer Correct ? | 24 Yes | 11 No |
Post New Answer View All Answers
Why do we use triggers?
what is an alias command? : Sql dba
what is the difference between delete and truncate commands? : Sql dba
What is a system versioned table?
Why use stored procedures?
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
What is a sql trace file?
What are system versioned tables?
What is sqlite format?
How delete a row in sql?
What schema means?
Can we use ddl commands in pl sql?
what is sp_pkeys? : Transact sql
What is pragma in sql?
How do I create a memory optimized filegroup?