Skip to content
Snippets Groups Projects
Commit c50f5028 authored by Mario Wenzel's avatar Mario Wenzel
Browse files

fixed path3f

parent c2daf076
No related branches found
No related tags found
No related merge requests found
WITH
path3(a,b) AS (
SELECT DISTINCT p1.a, p3.b from par p1 JOIN par p2 ON p1.b = p2.a JOIN par p2 ON p2.b = p3.a
SELECT DISTINCT p1.a, p3.b from par p1 JOIN par p2 ON p1.b = p2.a JOIN par p3 ON p2.b = p3.a
) SELECT Count(*) FROM path3;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment