如何使用INSERT INTO tblnm VALUES(value1,value2 ....)将数据插入到hive中的表中

时间:2016-03-14 12:48:29

标签: hadoop hive insert-into

我正在尝试将数据插入到hive表中。但它正在提供error.please帮助。

1 个答案:

答案 0 :(得分:1)

当我们在RDBMS表中插入数据时非常容易。我说我在hive中有一个test_table: -

  

蜂房> desc test_table;

     

     

col1 string

     

col2 string

     

所用时间:0.056秒,提取:2行

     

hive> 插入表test_table值('10','100');

它将运行map-reduce作业。一旦完成。您可以通过运行select *

来查看数据
  

蜂房> select * from test_table;

     

     

10 100

     

所用时间:0.209秒,提取:1行