Insert data into hive table

前端 未结 6 1310
梦毁少年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:08

    Although there is an accepted answer I would want to add that as of Hive 0.14, record level operations are allowed. The correct syntax and query would be:

    INSERT INTO TABLE tweet_table VALUES ('data');
    

提交回复
热议问题