HIVE HSQL 基本操作命令
Posted OnTheWay_duking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HIVE HSQL 基本操作命令相关的知识,希望对你有一定的参考价值。
创建表:
hive>create table tablename(id int,name string,password string);
创建一个名字为tablename的表,表的属性有int id; string name; string password;
创建一个新表,结构与其他一样
hive> create table table1 like table2;
创建一个表table1,表结构跟table2一样;
创建分区表
hive> create table table1(id int,line string) partitioned by (dt string,country string);
显示表中有多少分区
hive> show partitions table1;
显示所有表
hive> show tables;
显示所有与u开头的表
hive> show tables ‘u*‘;
显示表的结构信息
hive> describe test1;
以上是关于HIVE HSQL 基本操作命令的主要内容,如果未能解决你的问题,请参考以下文章