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

hive的简单使用

时间:2018-05-17 20:35:33      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:trunc   red   ext   too   rmi   tab   data   users   数据库   

显示数据库:

hive> show databases;

创建数据库:

hive> create database sunhive;

删除数据库:

hive> drop database if exists sunhive;

创建表:

hive> create table wyp (id int, name string, age int, tel string) row format delimited fields terminated by ‘\t‘  stored as textfile;

添加数据:

hive> load data local inpath ‘/Users/wochu/Desktop/tool/hdfs/fz.txt‘ into table wyp;

删除表内数据:

hive> truncate table wyp;

删除表:

hive> drop table if exists wyp;

 

hive的简单使用

标签:trunc   red   ext   too   rmi   tab   data   users   数据库   

原文地址:https://www.cnblogs.com/sunyaxue/p/9052800.html

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