1. 程式人生 > >Hive Create table as select

Hive Create table as select

Hive wiki

排查問題用到了Create table as

create table xxx as select

  • create table table1 as select * from table2 where 2=3;
    根據table2的表結構,建立tables1
  • create table table1 as select * from table2
    根據table2的表結構,建立tables1,同時將table2的資料插入table1
  • create table table1(column1_rename,column2_rename) as select column1,column2 from table2;
    根據table2的表結構,建立tables1,重新命名列,並複製資料