如何使用SQL展平具有多列数组的表?

时间:2018-07-19 04:36:03

标签: sql arrays presto

如何使用num和letter列中的数组转换此表:

 id  |    num    |  letter
-----+-----------+-----------
 111 | [1, 2]    | [a, b]
 111 | [3, 4]    | [c, d]
 222 | [5, 6, 7] | [e, f, g]

进入此表

 id  | num | letter
-----+-----+--------
 111 |   1 | a
 111 |   2 | b
 111 |   3 | c
 111 |   4 | d
 222 |   5 | e
 222 |   6 | f
 222 |   7 | g

附录: 这是一些SQL,可以尝试执行转换

with test as(
  select * from (
    values
        (111, array[1,2], array['a','b']),
        (111, array[3,4], array['c','d']),
        (222, array[5,6,7], array['e','f', 'g'])
  ) as t (id, num, letter)
)
select
 *
from test

1 个答案:

答案 0 :(得分:3)

PrestoDB似乎支持带有多个参数的unnest()

select t.id, u.n, u.l
from test cross join
     unnest(num, letter) as u(n, l)