hive的简单使用

Posted 伊米伊念

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive的简单使用相关的知识,希望对你有一定的参考价值。

显示数据库:

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的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Android片段管理器传递变量[重复]

Hive – Emerica 滑手在曼彻斯特

c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围

代码片段 - Golang 实现简单的 Web 服务器

简单的方法来分享/讨论/协作的代码片段?

java 简单的代码片段,展示如何将javaagent附加到运行JVM进程