How to find Hierarchies in Oracle (CONNECT BY) & Self Join|Hierarchical queries in oracle by example

preview_player
Показать описание
How to find Hierarchies in Oracle (CONNECT BY)
& Self Join |Hierarchical queries in oracle with example|connect by prior in oracle example

connect by prior in oracle example
connect by clause in oracle
oracle hierarchical query example
hierarchical queries in oracle
oracle hierarchical query bottom up
oracle hierarchical query get all parents
how to get parent and child record in single query using oracle

Queries:

select * from employees;

select
'Reports to',
from employees e1,employees e2

select
'Reports to',
from employees e1 left join employees e2

Connect by:

select * from employees;

select employee_id,first_name,manager_id
from employees
connect by manager_id =prior employee_id;

select employee_id,first_name,manager_id,prior first_name manager_name
from employees
start with manager_id is null
connect by manager_id =prior employee_id order by 1;

select employee_id,first_name,manager_id,prior first_name manager_name
from employees
start with manager_id is null
connect by prior employee_id = manager_id order by 1;

Oracle data definition language
Oracle data manipulation language
Oracle SQL PLSQL
Structured Query Language
Getting started with Oracle
how to create a table in oracle
Oracle in Tamil
Oracle training in English
Oracle tutorial
Oracle SQL for Beginners
SQL for Beginners
SQL beginners tutorial
Рекомендации по теме
Комментарии
Автор

*Complete 48 hours of Self-Paced Courses and Interview Questions Links:*

Are you interested in joining my Live training? or Self-Paced course?

You can visit our website for more details.



*WhatsApp group:*


Thanks,
NiC IT Academy



🔵Oracle SQL Tutorial - English

📌*IICS demo session:*

📌*Informatica Full Course:*

📌*SQL Full Course:*

📌*Informatica, IICS, and SQL playlist*

🌕 IICS Tutorial ENGLISH - Playlist

🌕 Informatica training in ENGLISH - Playlist

🌕 Informatica Interview Preparation - ENGLISH

🌕Oracle SQL - தமிழில்

🔵 Informatica training in தமிழில் - Playlist

🔵 Informatica Interview Preparation - TAMIL

🔵Unix for Informatica Developer

🌕Informatica Project videos

Please subscribe, Like, and comment. I will post more videos.

Thanks

NICITACADEMY
Автор

Tq sir.. I want more videos sir.. Gud session nd gud explanations 😍

velumani
Автор

how to go in reverse? i mean starting from lowest position to boss, like X -> Y -> Z

RifaiRahmanM
Автор

Hi NIC IT, when I am using same query -getting duplicates..

mahendravarma
Автор

Sir.. I wil share more tricky questions

velumani