I have a column name XMLData which contain large XML (around 10,000 lines). Below is the type of XML stored.
<ABC>
<DEF>
<GHI>
<JKL>value1</JKL>
..
</GHI>
<GHI>
<JKL>value2</JKL>
..
</GHI>
<GHI>
<JKL>value3</JKL>
..
</GHI>
..
..
<GHI>
<JKL>valueN</JKL>
..
</GHI>
<OtherNodes>
<OtherNodes1>
.
.
.
</DEF>
</ABC>
Is there a way to delete multiple nodes in SQL query? Specifically, I want to delete all GHI nodes under the Node DEF. Thanks!!
xmldata type functionality (I'm always happy to learn something new)