select typecode,lpad(' ',4*level-1)||typename
 from ajtype
  start with p_code is null  connect by prior typecode=p_code;

结果:

1   +市容环卫
15       +灯光管理
151           +拒不安装
15101               +拒不安装夜景灯光设施
152           +违规安装
15201               +不按规定位置安装夜景灯光设施
15202               +不按规定形式安装夜景灯光设施
15203               +不按规定期限安装夜景灯光设施
15204               +不按规定光源色彩安装夜景灯光设施
153           +不按时亮灯

 

 

select sys_connect_by_path(typename,'>') typename
 from ajtype
  start with p_code is null  connect by prior typecode=p_code;

1 >市容环卫
15 >市容环卫>灯光管理
151 >市容环卫>灯光管理>拒不安装
15101 >市容环卫>灯光管理>拒不安装>拒不安装夜景灯光设施
152 >市容环卫>灯光管理>违规安装
15201 >市容环卫>灯光管理>违规安装>不按规定位置安装夜景灯光设施
15202 >市容环卫>灯光管理>违规安装>不按规定形式安装夜景灯光设施

 

相关文章:

  • 2021-12-23
  • 2021-11-12
  • 2021-05-17
  • 2021-06-03
  • 2022-12-23
  • 2022-01-08
猜你喜欢
  • 2022-12-23
  • 2021-08-05
  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2021-11-30
  • 2021-05-30
相关资源
相似解决方案