• 2022-06-19
    以下哪个HiveQL语句是Hive中用来添加分区数据的
    A: A:add table t_log partition(2013) location '/logs/2013';
    B: B:add table t_log partition(year==2013) location '/logs/2013';
    C: C:alter table t_log add partition(2013) location '/logs/2013';
    D: D:alter table t_log add partition(year==2013) location '/logs/2013';
    E: 第一章 大数据基础知识