【123】
外部分区表score4的操作,并说明为什么最后需要执行msck repair table score4
【解答】
--进入Hive环境
[hadoop@node03 ~]$ hive
--连接到db_hive数据库(已提前创建好数据库:create database db_hive;)
hive (default)> use db_hive;
--创建外部分区表score4
hive (db_hive)> create external table score4(s_id string, c_id string, s_score int) partitioned by (month string) row format delimited fields terminated by '\t';
--查看表是否为外部表<