SQL #1 How to display Manager names from Employee Table

SQL #1 How to display Manager names from Employee Table

Arun Videos

4 года назад

5,749 Просмотров

This query demonstrates how to retrieve manager names from employee table.

Тэги:

#manager_names #manager_ids #sql #oracle #mysql
Ссылки и html тэги не поддерживаются


Комментарии:

@Yes_ajeed
@Yes_ajeed - 13.10.2022 11:50

Bro how to practice SQL online can you suggest me website to do practice

Ответить
@SuperManikanta123
@SuperManikanta123 - 03.01.2021 10:03

Hi,

Can we try like this!!
select a.EMP_NAME,b.EMP_NAME as MANAGER_NAME
from EMPLOYEE a,EMPLOYEE b
where a.EMP_ID=b.EMP_ID

Ответить