Hive 基本命令

进入Hive

打开终端:


cd $HIVE_HOME

bin/hive

创建表


create table if not exists test(id INT, name STRING,age INT)

ROW FORMAT DELIMITED

FIELDS TERMINATED BY '\t'

LINES TERMINATED BY '\n'

STORED AS TEXTFILE;

向表里插入数据

  1. 检查文件内容

    cat 1.txt
  2. 将文件内容导入到对应的表
    a. 在该文件的目录下,进入hive命令行
    b. 执行导入文件到表

    load data local inpath '1.txt' into table test;

查询表


select * from test;

删除表


drop table test;

你可能感兴趣的:(Hive 基本命令)