我有一个查询,表flights也包含price
列。我想把它加起来并显示出来。我该怎么解决这个问题呢?我可以通过某种方式从SELECT * from get_cities;
中取值来解决这个问题吗?还是应该在查询中完成?
Table img
我正在努力解决这个问题
编写一个查询,查找飞机经过3个停靠站后可以到达的所有城市 City name 的名称。显示停靠站所在的所有城市以及行程的总费用。同时汇总行程费用。
WITH RECURSIVE get_cities AS (
SELECT 0 as count, city, cid from cities where CITY = 'Agat'
UNION ALL
SELECT c.count + 1, b.city, b.cid from get_cities c
JOIN flights t on t.departure = c.cid
JOIN cities b on t.arrival = b.cid
WHERE COUNT < 3
)
SELECT cid, sum(price) from get_cities
JOIN flights f on f.fid = cid
GROUP BY cid
;
1条答案
按热度按时间8hhllhi21#
您可以直接在递归cte中对价格求和: