show databases;

use flume;

show tables;

desc flume;

alter table table_name add columns(dt string);

alter table jenkintb change dt dt1 string;

 

create table jenkintb (id int, name string) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' STORED AS TEXTFILE;

create table logtest (id int, name string) partitioned by (dt string) ;

相关文章:

  • 2022-12-23
  • 2021-09-13
  • 2021-05-20
  • 2021-12-03
  • 2022-02-21
  • 2022-01-26
  • 2021-11-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-18
  • 2022-02-27
  • 2021-05-31
  • 2021-06-23
  • 2021-06-19
相关资源
相似解决方案