摘要:
hive中查看表类型:desc formatted 表名 内部表转外部表 alter table 表名 set tblproperties('EXTERNAL'='TRUE'); 外部表转内部表 alter table 表名 set tblproperties('EXTERNAL'='FALSE') 阅读全文
摘要:
分隔符我们是可以自行指定的。 在创建表的时候可以自己决定: create table if not exists stu2(id int ,name string) row format delimited fields terminated by '\t'; row format delimite 阅读全文