AllPairsShortestPath Example 3: Weighted, Bounded Graph with Sources - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
8.00
1.0
Published
May 2019
Language
English (United States)
Last Update
2019-11-22
dita:mapPath
blj1506016597986.ditamap
dita:ditavalPath
blj1506016597986.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
  ON (SELECT callerid FROM callers
    WHERE callerid IN (1, 2)) AS sources PARTITION BY callerid
  USING
  TargetKey ('callerto')
  MaxDistance (8)
  EdgeWeight ('calls')
) AS dt ORDER BY source, target;

Output

source target distance
1 3 2
1 4 5
1 6 3
2 4 7