AllPairsShortestPath Example: Weighted, Unbounded Graph | Teradata Vantage - AllPairsShortestPath Example: Weighted, Unbounded Graph - 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ā„¢

SQL Call

SELECT * FROM AllPairsShortestPath (
  ON callers AS Vertices PARTITION BY callerid
  ON calls AS Edges PARTITION BY callerfrom
  USING
  TargetKey ('callerto')
  EdgeWeight ('calls') 
  MaxDistance (-1)
) AS dt ORDER BY source, target;

Output

 source target distance 
 ------ ------ -------- 
      1      2     10.0
      1      3      2.0
      1      4      5.0
      1      6      3.0
      2      4      7.0
      2      6     11.0
      3      6      1.0
      4      6      4.0
      5      6     10.0

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