select * from DT_INDUSTRY t 
start with industrycode IN (select industrycode from SYS_COMPANY_INDUSTRY t WHERE t.compid='541572482EDA4D4A9AA6E4AFB31A3782')

connect by prior INDUSTRYPCODE = industrycode

  SELECT SUBSTR(MAX(SYS_CONNECT_BY_PATH(NAME, '@sirc')), 6) AS NAME,
                 SUBSTR(MAX(SYS_CONNECT_BY_PATH(ID, '@sirc')), 6) AS ID    
            FROM SpecificFolderRelation B
           START WITH B.ID = P_ID
          CONNECT BY PRIOR B.PARENTID = B.ID;

  

相关文章:

  • 2021-10-16
  • 2021-12-29
  • 2021-12-26
  • 2021-12-25
  • 2021-04-20
  • 2021-10-03
猜你喜欢
  • 2022-12-23
  • 2022-01-19
  • 2021-07-22
  • 2021-12-19
相关资源
相似解决方案