如何将多个表unionAll

除了使用for循环,还有更高效的方式么

请先 登录 后评论

1 个回答

peter
t1 = table(take(1, 10) as id, take(`xxx , 10) as name)
t2 = t1
t3 = t2

reduce(unionAll{,,1},[t1, t2, t3])
可以使用 reduce + unionAll
请先 登录 后评论
  • 1 关注
  • 0 收藏,455 浏览
  • wfHuang 提出于 2023-09-01 17:49

相似问题