我有一个包含一个列的外部表- data,其中的数据是json对象hive> select get_json_object(data, "$.ev") from data_table100% OK 2 Time taken: 21.449 secondshive> select sum(get_json_object(
如何从多个Hive表创建一个新的Hive表?我使用JSON字符串创建原始表,但不确定如何创建新表。create table Bank_F001_table as get_json_object(Bank_F001.json, '$.text') as text, get_json_object(Bank_F
我有一个JSON,我正在尝试使用get_json_object内置函数在HIVE中解析它。在我的JSON中有一个类似"timestamp“的键,我的解析失败了,因为"timestamp”被标识为一个关键字。我正在尝试使用select get_json_object(col1,'$.timestamp') as ts from table1。在配置单元中使用get_json_object时如何处理关键字?