标签: presto
我想在Presto中使用CTE编写一个递归查询,以查找员工层次结构。 Presto是否支持递归查询? 当我写简单递归为
with cte as(select 1 n union all select cte.n+1 from cte where n<50) select * from cte
它给出了以下错误
答案 0 :(得分:0)
Presto语法支持WITH RECURSIVE name AS ...,但支持recursive WITH queries are not implemented。
WITH RECURSIVE name AS ...