xmltype - 删除没有子节点的父节点

时间:2015-04-24 10:27:58

标签: sql oracle plsql oracle11g

是否可以在xmltype变量中删除没有子节点的父节点?

例如:

declare
  v1 xmltype := xmltype('<root>
                           <parent1>
                             <child>1</child>
                             <child>2</child>
                           </parent1>
                           <parent2>
                             <child2>3</child2>
                           </parent2>
                         </root>');
begin
  -- some code...
  dbms_output.put_line(v1.getClobVal());
end;

我的目的是在输出上得到这个:

<root>
  <child>1</child>
  <child>2</child>
  <parent2>
    <child2>3</child2>
  </parent2>
</root>

我尝试使用deleteXML函数,但它也删除子节点......

所以,如果有人能够帮助我,我将不胜感激:)

1 个答案:

答案 0 :(得分:1)

删除节点可以使用DELETEXML完成,例如:

select DELETEXML(v1,'/root/parent1') into v1 from dual;

但删除parent1也会删除父1的所有子节点。 如果要保留parent1的子节点,首先必须在删除parent1之前复制这些节点。你可以这样做:

declare
  v1 xmltype := xmltype('<root>
                           <parent1>
                             <child>1</child>
                             <child>2</child>
                           </parent1>
                           <parent2>
                             <child2>3</child2>
                           </parent2>
                         </root>');
begin

  --Append all child nodes of parent1 as child nodes of root before the parent2 node
  select insertxmlbefore(v1, '/root/parent2',extract(v1,'/root/parent1/child::node()')) into v1 from dual;

  --remove parent 1
  select DELETEXML(v1,'/root/parent1') into v1 from dual;

  dbms_output.put_line(v1.getClobVal());

end;

这会给你:

<root>
    <child>1</child>
    <child>2</child>
    <parent2>
        <child2>3</child2>
    </parent2>
</root>

希望有所帮助。