黑猴子的家:Hive 基本Shell操作

1、启动hive

[victor@node1 hive]$ bin/hive

2、查看数据库

hive>show databases;

3、打开默认数据库

hive>use default;

4、显示default数据库中的表

hive>show tables;

5、创建一张表

hive> create table student(id int, name string) ;

6、显示数据库中有几张表

hive>show tables;

7、查看表的结构

hive>desc student;

8、向表中插入数据

hive> insert into student values(1000,"alex");

9、查询表中数据

hive> select * from student;

10、退出hive

hive> quit;

你可能感兴趣的:(黑猴子的家:Hive 基本Shell操作)