select 'hello', x from dual lateral view explode(array(1,2,3,4,5)) vt as x

结果是:
hello   1
hello   2
hello   3
hello   4
hello   5




相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-14
  • 2022-03-08
  • 2021-05-17
  • 2021-07-06
猜你喜欢
  • 2021-09-16
  • 2021-12-01
  • 2022-12-23
  • 2022-01-02
  • 2021-08-25
  • 2022-12-23
  • 2021-07-28
相关资源
相似解决方案