本文介绍了需要oracle查询我的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我的具体要求是:

i有以下tbl



emp_id - emp_code - manger_id - 名字 - 姓氏

--------------------------------- ---------------------------------------

22625 - E4 - 22640 - ravi - kumar



22634 - E7 - 22625 - sunil - varma



22655 - E12 - 22634 - gopal - rao



22660 - E23 - 22634 - abbas - mastan





我需要如下输出:



emp_code - emp_name - - parent_employee_code

--------------------------------------- ------------

E4 ravi kumar - null



E7 sunil varma - E4



E12 gopal rao - E7



E23 abbas mastan - E7





注意:显示E4父代码为null,而不是显示其代码父代码;


my exact requirement is:
i have the following tbl

emp_id --emp_code --manger_id --firstname --lastname
------------------------------------------------------------------------
22625--E4--22640--ravi--kumar

22634--E7--22625--sunil--varma

22655--E12--22634--gopal--rao

22660--E23--22634--abbas--mastan


and i need the output like below:

emp_code -- emp_name --- parent_employee_code
---------------------------------------------------
E4 ravi kumar -- null

E7 sunil varma -- E4

E12 gopal rao -- E7

E23 abbas mastan -- E7


note: showing E4 parent code as null,not req to show its parent code;

推荐答案


这篇关于需要oracle查询我的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 06:14