Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EscApp2/85c91bba230a8aff8e9d7d84630b9870 to your computer and use it in GitHub Desktop.
Save EscApp2/85c91bba230a8aff8e9d7d84630b9870 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