Support Questions

Find answers, ask questions, and share your expertise

Who agreed with this topic

Hive Insert into table issue

avatar
Contributor

I need to create a table with just a field, which is a map of string: string. I have created the table without problems, but when I try to insert the values (they are defined, not in another table) I am not able to achieve it. The code is below.

create table comunidades ( codigo MAP<STRING, STRING> );
INSERT INTO TABLE comunidades SELECT 1, {"AND": '01'};
Who agreed with this topic