Presto SQL - 如何获得数组的所有可能组合?
Posted
技术标签:
【中文标题】Presto SQL - 如何获得数组的所有可能组合?【英文标题】:Presto SQL - How can i get all possible combination of an array? 【发布时间】:2019-10-25 16:20:12 【问题描述】:我想要给定数组中一个数字的所有可能组合。
我尝试使用一些 presto 的预定义函数,例如 array_agg(x)
Input : [1,2,3,4]
Output
when n=2 : [[1,2],[1,3],[1,4],[2,3],[2,4],[3,4]]
when n=3 : [[1,2,3],[1,2,4],[1,3,4],[2,3,4]]
when n=4 : [[1,2,3,4]] or [1,2,3,4]
【问题讨论】:
这超出了 SQL 的能力。 【参考方案1】:有 combinations(array(T), n) 功能,它完全符合您的要求:
select combinations(array[1,2,3,4],2);
【讨论】:
非常感谢以上是关于Presto SQL - 如何获得数组的所有可能组合?的主要内容,如果未能解决你的问题,请参考以下文章