Created
July 9, 2020 20:47
-
-
Save MasterHans/be78e4ab33c47fa7e1ec8769f7d79d23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Имеется 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