Example: XQuery Query - Advanced SQL Engine - Teradata Database

XML Data Type

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
amr1556233250442.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1140
lifecycle
previous
Product Category
Teradata Vantageā„¢

You can use the XMLQUERY function to evaluate XQuery 1.0 queries against XML values. This example shows a query that is evaluated with the XML value as the context node:

SELECT XMLQUERY('for $i in /Customer/Order/Item
return $i/PartNumber' PASSING customerXML RETURNING CONTENT) as queryres
FROM customer WHERE customerID=1;

The result from the query is:

queryres
=========================
<PartNumber>F54709</PartNumber><PartNumber>Z19743</PartNumber>