Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasterHans/be78e4ab33c47fa7e1ec8769f7d79d23 to your computer and use it in GitHub Desktop.
Save MasterHans/be78e4ab33c47fa7e1ec8769f7d79d23 to your computer and use it in GitHub Desktop.
Имеется ID элемента. В инфоблоке несколько уровней вложенности. Как получить ID корневой папки этого элемента?
select
s.*
from b_iblock_section_element l
join b_iblock_section s
on s.ID = l.IBLOCK_SECTION_ID
where
l.IBLOCK_ELEMENT_ID = $id
and s.DEPTH_LEVEL = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment