登陆后可以记录私有便条!

9308 图片 admin 分数: 0 (0 次)
创建: 2015-11-29 18:21:19
更新: 2021-02-14 13:54:43
hive 测试 语句

echo "1,nihao
2,111aa
3,bk
4,你好
5,测试">123.txt

hive -hiveconf hive.root.logger=DEBUG,console

create table test_123 (id int, name string )
row format delimited FIELDS TERMINATED BY ',';

load data local inpath '/home/hadoop/123.txt' overwrite into table test_123;