大数据开发hive数据库常用命令汇总

在大数据进修之中,特为是Hadoop生态的进修之中,Hive是必备的,也是相对门坎较低,较量好动手的一个组件。本日的大数据开采分享,和众人分享Hive的根本常识点。

Hive简介遵循官方文档的界说,Hive是一种用类SQL语句来扶助读写、治理那些储备在散布式储备系统上大数据集的数据货仓软件

1、加入hive数据库:

hive

2、观察hive中的所稀有据库:

showdatabases;

3、用default数据库:

usedefault;

4、观察整个的表:

showtables;

5、盘诘表布局:

desctable_name(表名);

6、盘诘表数据:

select*fromtable_name(表名);

7、缔造数据库:

hivecreateschemashop_db;

8、考证数据库表:

hiveshowdatabases;

9、简略数据库:

hivedropdatabaseifexistsshop_db;

dropschemashop_db;

全体简略响应的表在简略数据库以前:

hivedropdataBASEifexistsshop_dbcascade;

10、缔造表tb_employee

hivecreatetableifnotexiststb_employee(idint,namestring,salarystring,destinationstring)


转载请注明:http://www.aierlanlan.com/rzdk/1141.html

  • 上一篇文章:
  •   
  • 下一篇文章: