码迷,mamicode.com
首页 > 其他好文 > 详细

大数据学习——hive基本操作

时间:2019-01-15 22:03:19      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:src   location   大数据学习   string   roo   external   from   hdf   load data   

1 建表

create table student(id int,name string ,age int) 
row format delimited
fields terminated by ‘,‘;

2 创建一个student.txt

添加数据

1,zhangsan,10
2,lisi,20
3,wnagwu,25

3 上传

hdfs dfs -put student.txt /user/hive/warehouse/student

4 select * from student;

技术分享图片

 

5 通常不会通过put方式加载数据,而是通过load的方式添加数据

create table t_user(id int,name string ,age int) 
row format delimited
fields terminated by ,;

 

 load data local inpath ‘/root/student.txt‘ into table t_user;

技术分享图片

 

6 添加hdfs上的数据到hive

hdfs dfs -put student1.txt /

技术分享图片

技术分享图片

 

 

7 内部表和外部表的区别

EXTERNAL关键字可以让用户创建一个外部表,在建表的同时指定一个指向实际数据的路径(LOCATION),Hive 创建内部表时,会将数据移动到数据仓库指向的路径;若创建外部表,仅记录数据所在的路径,不对数据的位置做任何改变。在删除表的时候,内部表的元数据和数据会被一起删除,而外部表只删除元数据,不删除数据。

大数据学习——hive基本操作

标签:src   location   大数据学习   string   roo   external   from   hdf   load data   

原文地址:https://www.cnblogs.com/feifeicui/p/10274428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!