İ have an XML document to store against records in an Oracle Database.
The table CourseXML will contain:
Record_Number int
XML_Type int
XMLDoc clob
...etc
İ would like to make a search in XMLDoc column by XML tags. The XML document has an XML Schema like this:
<root>
<UnitID="2" Name="Jerry" SName="Potter"/>
<UnitID="3" Name="Jim" SName="Carelyn"/>
</root>
İ want to make search in UnitID="2" and i only want Jerry's xml row. How I have to make a select statement query to get that xml row?