However, we may find we have a database that stores XML directly in a CLOB/NCLOB datatype (either because of legacy data, or because we are supporting multiple database platforms).
It can be useful to query this data directly using the XMLType functions available. This post just shows a very simple example of a query to do this.
(Note: there may be better ways to do this - but this worked for me when I needed an ad-hoc query quickly!)
Our Table
Assume we have a table called USER, which has the following columnsOur embedded XML (example for Ringo)
Our Query
Say we want to look at account details in the XML - e.g. find which users all have the same sort code. A query like the following:
Will produce output like this. Obviously from here you can use all the standard SQL operators to filter, join etc further to get what you need: