Learn Oracle SQL : The Hierarchical Query Clause

preview_player
Показать описание

Learn Oracle SQL : The Hierarchical Query Clause: In this video, I show you how to use the Hierarchical Query Clause in Oracle SQL to build a basic hierarchical query.

================

Рекомендации по теме
Комментарии
Автор

Awesome, I finally got what is the use for hierarchical queries, thanks a lot.

JoseAlvarez-dlhm
Автор

Simple and straight to the core. Incredible job !

AwarapanBihu
Автор

Thank you for such a simple method of explaining the concepts.. Thanks again!

backyardwilderness
Автор

Literally superb man..hats off to u .You just cleared by all doubt which I had before watching this video...You explained it as simple as it could be explain...waiting for the other tutorials of Hierarchical queries...Good job bro...keep doing this

adarshsrivastava
Автор

Thanks for explaining.Its super simple.Please make more videos.

sravannayini
Автор

Can you help me with sql server
I want to result like there
Top level. Under level1
Top level. Under level 2
Top level. ....

phuongnamnguyen
Автор

nice example, making something complex simple

kevinsantana
Автор

Could you please tell us the answer for the above question

kirankumar-jwxi
Автор

Please help me to solve below query .
I used is to find duplicates .

This is working fine

SELECT distinct a.*
FROM   HR.emp1 a
where exists(select count(*) from
  (SELECT b.* FROM HR.emp1 b WHERE b.rowid = a.rowid
    INTERSECT
    SELECT c.* FROM HR.emp1 c WHERE c.rowid <> a.rowid
));


But when I used it inside below query it is not identifying the rowid, I tried it by using alais too but without success .

SELECT distinct a.*
FROM   HR.emp1 a
where 1 = (select count(*) from (select count(*) from
  (SELECT b.* FROM HR.emp1 b WHERE b.rowid = a.rowid
    INTERSECT
    SELECT c.* FROM HR.emp1 c WHERE c.rowid <> a.rowid
)));

Please help me to resolve the query

ChatkareChapri
join shbcf.ru