SQL-MapReduce Call - Aster Analytics

Teradata Aster® Analytics Foundation User GuideUpdate 2

Product
Aster Analytics
Release Number
7.00.02
Published
September 2017
Language
English (United States)
Last Update
2018-04-17
dita:mapPath
uce1497542673292.ditamap
dita:ditavalPath
AA-notempfilter_pdf_output.ditaval
dita:id
B700-1022
lifecycle
previous
Product Category
Software

This call finds the management chain of employee 500 by traversing the tree of employees from employee 500 upward.

SELECT * FROM ntree (
  ON employee_table PARTITION BY 1
  Root_Node (mgr_id IS NULL)
  Node_ID (emp_id)
  Parent_ID (mgr_id)
  Starts_With (emp_id=500) 
  Mode ('up') 
  Output ('end')
  Result (PATH(emp_name) AS path)
) ORDER BY 1;