Inserting Data into Hive Table

后端 未结 11 1150
失恋的感觉
失恋的感觉 2020-12-14 17:01

I am new to hive. I have successfully setup a single node hadoop cluster for development purpose and on top of it, I have installed hive and pig.

I created a dummy t

11条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 17:38

    It's a limitation of hive.

    1.You cannot update data after it is inserted

    2.There is no "insert into table values ... " statement

    3.You can only load data using bulk load

    4.There is not "delete from " command

    5.You can only do bulk delete

    But you still want to insert record from hive console than you can do select from statck. refer this

提交回复
热议问题