XMLParser Example: Grandparent, Parent, and Child Nodes | Teradata Vantage - XMLParser Example: Grandparent, Parent, and Child Nodes - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
9.02
9.01
2.0
1.3
Published
February 2022
Language
English (United States)
Last Update
2022-02-10
dita:mapPath
rnn1580259159235.ditamap
dita:ditavalPath
ybt1582220416951.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantageā„¢

This example uses the Nodes and Ancestors syntax elements to show the hierarchy of grandparent, parent, and child nodes.

Input

xml_input2
xid xml
1 <School name="UCBerkeley">

: <Dept ID="CS" name="Computer Science">

: <Class A="sophomore" B="Senior">

: <Year>

: <Student>Harry</Student>

: <Grade>A+</Grade>

: </Year>

: </Class>

: </Dept>

: </School>

SQL Call

SELECT * FROM XMLParser (
  ON xml_input2 
  USING
  TextColumn ('xml')
  Nodes ('Class:{A,B}/Year/Student','Year/Grade')
  Ancestor ('School/Dept')
  Accumulate ('xid')
) AS dt;

Output

 xid out_nodeid out_grandparent_node out_parent_node class_a   class_b student grade 
 --- ---------- -------------------- --------------- --------- ------- ------- ----- 
   1          1 Class                Year            sophomore Senior  Harry   A+

Download a zip file of all examples and a SQL script file that creates their input tables.