怎么查询挂载目录及目录下所有名称1111,这样没查到

image.png

FineReport 小白不白 发布于 2024-12-19 14:44 (编辑于 2024-12-19 14:44)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
snrtuemcLv8专家互助
发布于2024-12-19 14:48

select id1,id2,id3,id4,concat(lv1, '/', lv2,  concat( '/', lv3 ), concat( '/', lv4 )) as dictory ,lv1 ,lv2 ,lv3 ,lv4 ,paths from

(select a.id as id1,b.id as id2,c.id as id3,d.id as id4,a.displayName as lv1 ,b.displayName as lv2 ,c.displayName as lv3 ,d.displayName as lv4 ,ifnull( ifnull( b.path, c.path ), d.path ) as paths from fine_authority_object a

left join fine_authority_object b on a.id = b.parentId

left join fine_authority_object c on b.id = c.parentId

left join fine_authority_object d on c.id = d.parentId

where a.parentid = 'decision-directory-root'

order by a.sortIndex ) a

image.png

  • 小白不白 小白不白(提问者) 可以的! 不过哪个是目录挂载的顺序字段 ,想排下序
    2024-12-19 14:55 
  • snrtuemc snrtuemc 回复 小白不白(提问者) 已经按照sortIndex排序了的啊
    2024-12-19 14:59 
最佳回答
0
Z4u3z1Lv6专家互助
发布于2024-12-19 14:44

-----FRDemo.db 表结构

https://help.fanruan.com/finereport/doc-view-1573.html 

SELECT * FROM FINE_AUTHORITY_OBJECT WHERE PATH LIKE '%CPT' OR PATH LIKE '%FRM'

  • 2关注人数
  • 23浏览人数
  • 最后回答于:2024-12-19 14:48
    请选择关闭问题的原因
    确定 取消
    返回顶部