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
@Cadlg_Oracle_SQL6 жыл бұрын
I'm glad it was helpful, my friend. Hopefully, I will find some time to make more videos ;)
@JoseAlvarez-dl3hm2 жыл бұрын
Awesome, I finally got what is the use for hierarchical queries, thanks a lot.
@AwarapanBihu6 жыл бұрын
Simple and straight to the core. Incredible job !
@Cadlg_Oracle_SQL6 жыл бұрын
Thanks!
@backyardwilderness69282 жыл бұрын
Thank you for such a simple method of explaining the concepts.. Thanks again!
@luisontwo5 жыл бұрын
Really good stuff. Well explained.
@Cadlg_Oracle_SQL4 жыл бұрын
Thanks, Luis!
@parmarpooja0074 жыл бұрын
Beautifully explained...👍👍👍👍👍👍👍👍👍👍
@sravannayini43296 жыл бұрын
Thanks for explaining.Its super simple.Please make more videos.
@Cadlg_Oracle_SQL6 жыл бұрын
You're welcome, my friend. Hope to find some time to make more videos ;)
@musandlala79914 жыл бұрын
Brilliant explaination
@Cadlg_Oracle_SQL4 жыл бұрын
Thanks, Kmn!
@pankajkharade69364 жыл бұрын
superb explanation 👍👍👍
@Cadlg_Oracle_SQL4 жыл бұрын
Thanks, Pankaj!
@shilpananda41925 жыл бұрын
Nice explanation.
@debottamguha13444 жыл бұрын
Nice and clear example
@esakkijeyaraman28595 жыл бұрын
Great explanation. !!!
@Cadlg_Oracle_SQL4 жыл бұрын
Thanks, Esakki!
@kevinsantana8766 жыл бұрын
nice example, making something complex simple
@suriebc67796 жыл бұрын
its a nice explanation.
@Cadlg_Oracle_SQL6 жыл бұрын
Thanks, my friend.
@kirankumar-jw3xi4 жыл бұрын
Could you please tell us the answer for the above question
@phuongnamnguyen98563 жыл бұрын
Can you help me with sql server I want to result like there Top level. Under level1 Top level. Under level 2 Top level. ....
@thomasutube14 жыл бұрын
Good.
@ChatkareChapri6 жыл бұрын
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