Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Oracle, you can write:

update t
set xml = updateXML(xml, '/a/b/text()', 'gaga')

This works only if you already have some text in the <b> element. How to update the document and "add some text" in <b> if the document in the database looks like:

<a>
    <b/>
</a>
share|improve this question

1 Answer

up vote 1 down vote accepted

Here is one way to do it:

update t
set xml = updateXML(xml, '/a/b', XMLType('<b>gaga</b>'))

I don't find this very elegant, but I am not sure you can do better.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.