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 - 如何获得数组的所有可能组合?的主要内容,如果未能解决你的问题,请参考以下文章

如何运行 Presto 查询查找行数组中元素的索引

SQL / Presto SQL:在同一列中按组求和

如何连接由 Presto 中的另一列分组的数组?

Presto 数组包含来自另一列的值(超集 SQL 查询)

Presto 数组包含一个喜欢某种模式的元素

如何获得多个多维数组的所有可能交集?