Hive建表与导入文件中的数据
Hive与Sql语言很像,
use 数据库;
以建一个student表为例:
create table student(id int,name string) row format delimited fields terminated by "\t";
编写student.txt文件(中间以tab键隔开 即 \t )
2 Tiny
3 Fun
4 Mark
5 Yong
load data local inpath "/opt/module/datas/student.txt" into table student;
OK
作者:Mark
出处:http://www.cnblogs.com/Mark_blog/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。