Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Equivalent keyword in Oracle for QUALIFY of Teradata

447396Jun 9 2009 — edited Jun 9 2009
Hi,

In teradata database we can write a query like below :

select sls_doc_id, sls_dlvr_doc_id, rank() over (partition by sls_dlvr_doc_id order by sls_dlvr_doc_id) rn
from cdp_analysis.v_sls_dlvr_doc_dtl
QUALIFY rn > 1;

If I want to write an equivalent thing in Oracle then I can write an equivalent like below :

select sls_doc_id, sls_dlvr_doc_id
from
(
select sls_doc_id, sls_dlvr_doc_id, rank() over (partition by sls_dlvr_doc_id order by sls_dlvr_doc_id) rn
from cdp_analysis.v_sls_dlvr_doc_dtl
)
where rn > 1;

I just want to know is any keyword exist in Oracle which is equivalent to QUALIFY of Teradata?

Regards,
Koushik

Comments

I dont see a msi version in the link. whats the process to get the msi file.

PhHein

Have a look here:

https://www.oracle.com/technetwork/java/javase/documentation/msiinstallerfaq-2967694.html

It is available to Java SE Subscription, and Java SE Desktop Subscription subscribers, and is a commercial feature entitlement for  legacy Java SE Advanced and Java SE Advanced Desktop customers.

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 7 2009
Added on Jun 9 2009
1 comment
5,908 views