Answer Posted / jithendranath.g
select z2.sal from emp z1, emp z2
where z2.sal <=z1.sal
group by z2.sal
having count(z2.sal)=&n
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can we connect to ORACLE db using Windows Authentication?
How to update values in a table in oracle?
How to speed up webrick?
What types of joins are used in writing subqueries?
What are the different editions of oracle?
what is partitioning? Types of partitioning. explain? what is the new kind of partitioning type introduced in 9i?
Explain oracle 12c new features for developers?
How to create a new view in oracle?
What is Trigger in Oracle?
What is the difference between sharding and replication?
Explain parameter file in oracle.
How to assign a tablespace to a users in oracle?
How many types of synonyms in Oracle?
Please explain oracle left join with an example?
how to use select statement as formal parameter in procedure specification?(someone said that using string) ex:-procedure(a in number,select ename from emp ) i am asking syntax like this?