Answer Posted / keshav
with Q as (select *,dense_rank() over(partition by dept
order by sal) as dr from dept
select * from Q
where dr=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is embedded sql with example?
What is dynamic sql in pl sql?
how many tables will create when we create table, what are they? : Sql dba
define data blocks ? : Sql dba
Explain select statements in sql?
Is primary key an index?
what is the different between now() and current_date()? : Sql dba
What is numeric function sql?
Why is there a need for sqlcode and sqlerrm variables?
what is 'mysqlshow'? : Sql dba
When should I use nosql database?
what is blob? : Sql dba
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
Can we use delete in merge statement?
How do you drop a trigger?