Instead of the following XQuery statement, what could be alternatives, regarding re-writing the statement, via options like:
- xmltable
- xsql
- xpath
- table(xmlsequence())
- etc
So I am looking for alternative statements and/or an alternative for ora:view
Thanks for the effort
Marco
xquery
let $auction := ora:view("XMLType_Table") return
for $b in $auction/site/people/person[@id = "person0"] return $b/name/text()
/
Edited by: Marco Gralike on Oct 19, 2008 3:48 PM