我需要一个MySQL查询,该查询可在一个嵌套集中移动一个节点及其所有子节点。我找到了这个站点,但是该函数似乎非常不合逻辑- 没有universeid或没有treeid嵌套的集合模型,并且代码本身仅比所需的更长。我在表格中仅有的额外一列是parent。
universeid
treeid
parent
我不能只删除并再次添加该节点,因为它将丢失其ID。
我知道,这个主题已经很老了,但是无论如何仍然没有答案。我是从Google来到这里的,没有找到这个问题的直接答案。
因此,经过一些研究,我发现了很简单的解决方案。
一切,我们需要移动节点的是:节点左右位置,新父节点右边位置。然后可以通过四个简单步骤将节点移动到新位置:
这是理论,现在-这种算法在MySQL中的实现(使用PHP的示例):
-- step 0: Initialize parameters. SELECT @node_id := 1, --put there id of moving node @node_pos_left := 0, --put there left position of moving node @node_pos_right := 1, --put there right position of moving node @parent_id := 2, --put there id of new parent node (there moving node should be moved) @parent_pos_right := 4; --put there right position of new parent node (there moving node should be moved) SELECT @node_size := @node_pos_right - @node_pos_left + 1; -- 'size' of moving node (including all it's sub nodes) -- step 1: temporary "remove" moving node UPDATE `list_items` SET `pos_left` = 0-(`pos_left`), `pos_right` = 0-(`pos_right`) WHERE `pos_left` >= @node_pos_left AND `pos_right` <= @node_pos_right; -- step 2: decrease left and/or right position values of currently 'lower' items (and parents) UPDATE `list_items` SET `pos_left` = `pos_left` - @node_size WHERE `pos_left` > @node_pos_right; UPDATE `list_items` SET `pos_right` = `pos_right` - @node_size WHERE `pos_right` > @node_pos_right; -- step 3: increase left and/or right position values of future 'lower' items (and parents) UPDATE `list_items` SET `pos_left` = `pos_left` + @node_size WHERE `pos_left` >= IF(@parent_pos_right > @node_pos_right, @parent_pos_right - @node_size, @parent_pos_right); UPDATE `list_items` SET `pos_right` = `pos_right` + @node_size WHERE `pos_right` >= IF(@parent_pos_right > @node_pos_right, @parent_pos_right - @node_size, @parent_pos_right); -- step 4: move node (ant it's subnodes) and update it's parent item id UPDATE `list_items` SET `pos_left` = 0-(`pos_left`)+IF(@parent_pos_right > @node_pos_right, @parent_pos_right - @node_pos_right - 1, @parent_pos_right - @node_pos_right - 1 + @node_size), `pos_right` = 0-(`pos_right`)+IF(@parent_pos_right > @node_pos_right, @parent_pos_right - @node_pos_right - 1, @parent_pos_right - @node_pos_right - 1 + @node_size) WHERE `pos_left` <= 0-@node_pos_left AND `pos_right` >= 0-@node_pos_right; UPDATE `list_items` SET `parent_item_id` = @parent_id WHERE `item_id` = @node_id;
请注意-SQL代码中仍然可能存在一些语法错误,因为我实际上是在PHP中使用这种算法,如下所示:
$iItemId = 1; $iItemPosLeft = 0; $iItemPosRight = 1; $iParentId = 2; $iParentPosRight = 4; $iSize = $iPosRight - $iPosLeft + 1; $sql = array( // step 1: temporary "remove" moving node 'UPDATE `list_items` SET `pos_left` = 0-(`pos_left`), `pos_right` = 0-(`pos_right`) WHERE `pos_left` >= "'.$iItemPosLeft.'" AND `pos_right` <= "'.$iItemPosRight.'"', // step 2: decrease left and/or right position values of currently 'lower' items (and parents) 'UPDATE `list_items` SET `pos_left` = `pos_left` - '.$iSize.' WHERE `pos_left` > "'.$iItemPosRight.'"', 'UPDATE `list_items` SET `pos_right` = `pos_right` - '.$iSize.' WHERE `pos_right` > "'.$iItemPosRight.'"', // step 3: increase left and/or right position values of future 'lower' items (and parents) 'UPDATE `list_items` SET `pos_left` = `pos_left` + '.$iSize.' WHERE `pos_left` >= "'.($iParentPosRight > $iItemPosRight ? $iParentPosRight - $iSize : $iParentPosRight).'"', 'UPDATE `list_items` SET `pos_right` = `pos_right` + '.$iSize.' WHERE `pos_right` >= "'.($iParentPosRight > $iItemPosRight ? $iParentPosRight - $iSize : $iParentPosRight).'"', // step 4: move node (ant it's subnodes) and update it's parent item id 'UPDATE `list_items` SET `pos_left` = 0-(`pos_left`)+'.($iParentPosRight > $iItemPosRight ? $iParentPosRight - $iItemPosRight - 1 : $iParentPosRight - $iItemPosRight - 1 + $iSize).', `pos_right` = 0-(`pos_right`)+'.($iParentPosRight > $iItemPosRight ? $iParentPosRight - $iItemPosRight - 1 : $iParentPosRight - $iItemPosRight - 1 + $iSize).' WHERE `pos_left` <= "'.(0-$iItemPosLeft).'" AND i.`pos_right` >= "'.(0-$iItemPosRight).'"', 'UPDATE `list_items` SET `parent_item_id` = "'.$iParentItemId.'" WHERE `item_id`="'.$iItemId.'"' ); foreach($sql as $sqlQuery){ mysql_query($sqlQuery); }
还请注意,代码可能已经过优化,但是为了更好的可读性,我将其保留下来。如果在多用户系统中使用嵌套集,还应考虑使用表锁定。
希望我的信息能对任何寻求我解决方案的人有所帮助。也欢迎任何评论和更正。