当前位置:   article > 正文

SQL,insert overwrite table 的各个列顺序 要和 insert的表 里顺序一致_spark-sql insert overwrite 是按照名称还是按照顺序

spark-sql insert overwrite 是按照名称还是按照顺序

insert SQL

insert overwrite table insert_table PARTITION ( column4 ) 
   select column1, column2, column3
   from source_table
  • 1
  • 2
  • 3

建表 SQL

create table if not exists insert_table (
      column1 string comment 'column1'
      column2 string comment 'column2'
      column3 string comment 'column3')
    PARTITIONED BY (column4 string comment 'column4') 
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/397225
推荐阅读
相关标签
  

闽ICP备14008679号