Created 08-14-2017 12:35 PM
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'};