1. 程式人生 > >Hive 常用命令和語句

Hive 常用命令和語句

。。 常用命令 for string ive field comment creat 用戶

1、 創建表 create-table.sql

create table if not exists db_hive.tb_user
(
    id int,
    username string comment 用戶名,
    age int comment 年齡,
    address string comment 地址
)
comment 用戶表
row format delimited fields terminated by   
stored as textfile
location /user/hive/warehouse/db_hive.db/db_user

2、執行創建表

hive -f create-table.sql

3、

4、

5、

待續。。。

.

Hive 常用命令和語句