码迷,mamicode.com
首页 > 其他好文 > 详细

Hive基础测试操作

时间:2019-04-10 13:50:57      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:查询   nts   tst   efault   path   ring   style   user   table   

一、Hive测试

  1.查看数据库

  show databases;

  2.使用某个数据库,如默认数据库

  user default;

  3.创建表

  create table if not exist itstar(id int,name string);

  4.插入数据

  insert into table itstar values(1,"wyh");

  5.查询

  select * from itstar;

  6.删除表

  drop table itstar;

  7.删除数据库

  create database hive_db;

  drop database if exist hive_db;

  8.退出Hive

  quit;

二、向Hive中的表导入文本数据

  1.在Hive中创建表

  create table students(id int,name string) row format delimited fields terminated by "\t";

  2.导入数据  

  load data local inpath ‘/root/data/student.txt‘ into table students;

Hive基础测试操作

标签:查询   nts   tst   efault   path   ring   style   user   table   

原文地址:https://www.cnblogs.com/HelloBigTable/p/10682684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!