Insert data into hive table

前端 未结 6 1173
梦毁少年i
梦毁少年i 2021-02-04 06:22

Using a Cygwin distribution, I\'ve installed Hadoop 0.20.3 and Hive 0.11.0.

First of all, I don\'t understand how to use the Hive CLI:

hive> show tabl         


        
6条回答
  •  终归单人心
    2021-02-04 07:17

    Try to use this with single quotes in data:

    insert into table test_hive values ('1','puneet');
    

提交回复
热议问题