This commit is contained in:
yumoqing 2025-07-30 13:44:00 +08:00
parent d8b627654d
commit 87a4d1cbef

View File

@ -96,8 +96,7 @@ from folder as x left join (
select unique a.* from folder a
left join folder b on a.id = b.parentid
left join file c on a.id=c.folderid
where b.id is not null or c.id is n
ot null
where b.id is not null or c.id is not null
) as y
on x.id = y.id
where x.parentid = ${fid}$