Sunday 17 February 2019

Write a SQL to list “no of employees” & “name of employees” reporting to each person



select empno,ename,no_of_rep,name_of_rep
from emp,
    (select mgr,listagg(ename,',') name_of_rep,
           count(*) no_of_rep
     from emp
     group by mgr) r
where emp.empno=r.mgr(+)
order by empno;



select empno,ename,
      (select listagg(ename,',')
      from emp where mgr = e.empno) name_of_rep,
      (select count(1)
      from emp where mgr = e.empno) no_of_rep
from emp e
order by empno;



select m.empno,m.ename,
       listagg(e.ename,',') name_of_rep,
       count(e.ename) count_of_rep
from emp m, emp e
where m.empno=e.mgr(+)
group by m.empno,m.ename
order by 1

25 comments:

  1. Thanks,for this article. Ifn you are looking for best monitors for photoshop then you should check my article on best monitors for photoshop. All these monitors are tested and having great for click here for more information related to Monitors

    ReplyDelete
  2. Good ! I also written one article on best sofas reviews. So You might like it. If you want to read it then you can read here that article on sofas. Thanks

    ReplyDelete
  3. This article is awesome. meanwhile I have also written one article on Monitors and technology. So if you want to check it out then you can click here for more information related to Monitors

    ReplyDelete
  4. This article is awesome. meanwhile I have also written one article on Monitors and technology. So if you want to check it out then you can click here for more information related to Monitors

    ReplyDelete
  5. This article is awesome. meanwhile I have also written one article on Monitors and technology. So if you want to check it out then you can click here for more information related to Monitors

    ReplyDelete
  6. Thanks For this article. Also I found some guides related to PC monitors. Hope you check it out.

    Best PC Gaming Monitors
    Best Monitor For Overwatch
    What Is IPS Monitors?
    Best Monitor for macbook pro

    ReplyDelete
  7. Thanks For this article. Also I found some guides related to PC monitors. Hope you check it out.

    Best PC Gaming Monitors
    Best Monitor For Overwatch
    What Is IPS Monitors?
    Best Monitor for macbook pro

    ReplyDelete
  8. Thanks for this article, Also, if have a monitor want to know How to setup dual monitors ? then you can read this article here.

    Also, Here is the second article on Setup dual monitors So you must check them out.

    ReplyDelete
  9. Thanks for sharing "Write a SQL to list “no of employees” & “name of employees” reporting to each person. It will help me to resolve the issues Unable To Create Accountant's Copy! while managing my employee report while managing my financial data on QuickBooks.

    ReplyDelete
  10. Activate NFL on Roku

    To activate NFL channel, go to nfl.com/activate to enter the TV received code. Choose your TV provider. Tap Continue to stream football live.

    ReplyDelete
  11. QuickBooks Database Server Manager have created a massive impact in the world of accounting and finances. It is now extremely preferred by most businesses to generate invoices thus helping small businesses run with authenticity. One great thing about QuickBooks is that its interface is so easy that anyone can use it without any hassle

    ReplyDelete
  12. This comment has been removed by the author.

    ReplyDelete
  13. Hi there! Pikashow is an online streaming service that offers TV shows, movies, and documentaries from around the world. It's a great way to watch your favorite shows and explore new content. You can even create your own personal library of shows and movies to watch anytime. Thanks for your question!

    ReplyDelete
  14. Nice post!! Thanks for sharing. Happy to read your Blog. If you want to know about Loan Information you can visit here.

    ReplyDelete
  15. Great Writing and Initiative !This SQL Blog query tackles a fundamental aspect of organizational hierarchy, offering a solution to a common requirement in human resources management or organizational analysis. By requesting the number of employees and their names reporting to each person, it provides valuable insight into the structure and distribution of personnel within a company or any hierarchical system and if you want any help from vue.js development companythose companies can help you to find your unique tailored needs.
    Overall, this SQL query addresses a practical need with clarity and efficiency, highlighting the importance of effective data management techniques in optimizing organizational performance.

    ReplyDelete

About Me

I am Siva Jeevan.LK [LEARN | CODE | TRAIN | SHARE] Passionate to answer oracle SQL & PLSQL related questions. In my day to day job, I work with technologies including Oracle, Java, Python, MongoDB, talend and UNIX. I am passionate about "DATA", “SQL” , coding & training. In my spare time, I teach database technologies , ETL etc. I am very glad that you are reading my Profile, and I value your time as well as mine. Looking forward to see you in my videos at Siva Academy Passionate to answer oracle SQL & PLSQL related questions. You can contact me via My youtube channel (Siva Academy) or drop an email at siva.k.academy@gmail.com Happy to Learn & Help :-)

Total Pageviews