为什么我们不能将数据导入 Hive CLI,如下所示,hive_test
表有user
,comments
列。
insert into table hive_test (user, comments)
value ("hello", "this is a test query");
Hive 在 Hive CLI 中引发以下异常
失败:ParseException 行 1:28 无法识别选择子句中“(”“用户”“,”附近的输入
我不想通过 csv 文件导入数据,如下面的测试目的。
load data local inpath '/home/hduser/test_data.csv' into table hive_test;