LOAD DATA LOCAL INPATH 'dim_csl_rule_config.txt' OVERWRITE into table dim.dim_csl_rule_config
--从查询语句给table插入数据
INSERT OVERWRITE TABLE test_h02_click_log PARTITION(dt) select *
from stage.s_h02_click_log where dt='2014-01-22' limit 100
一个是通过select hql进行插入已经存在的hive表insert overwrite table table_name select ... from ...
一个是load数据到表中
load data [local] inpath .... overwrite into table ....
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)