hive 建表导入数据
Posted Captain林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive 建表导入数据相关的知识,希望对你有一定的参考价值。
1、
- hive> create table wyp
- > (id int, name string,
- > age int, tel string)
- > ROW FORMAT DELIMITED
- > FIELDS TERMINATED BY ‘\t‘
- > STORED AS TEXTFILE;
2、
- cat wyp.txt
- 1 wyp 25 13188888888888
- 2 test 30 13888888888888
- 3 zs 34 899314121
3、
load data local inpath ‘wyp.txt‘ into table wyp;
以上是关于hive 建表导入数据的主要内容,如果未能解决你的问题,请参考以下文章