Let's assume I have inserted the below xml in the DB.
<root>
<name>Dixit</name>
<entry>
<vol>1212</vol>
<title>title1</title>
<isbn>
<value>123456</value>
</isbn>
</entry>
<entry>
<vol>1212</vol>
<title>title1</title>
</entry>
</root>
How can I write a cts query which will return me the <entry>
nodes with <vol>
as 1212 & <title>
as title1 & should not have <isbn>
element.
For the above xml the output should be.
<entry>
<vol>1212</vol>
<title>title1</title>
</entry>