I just want to initiate this topic on Hive Complex Data Types. Those who are interested can share your knowledge, use case, examples, questions, related to Complex data type
Hive supports 4 types of complex data types
ARRAY
MAP
STRUCT
UNIONTYPE
A sample table created with struct
create table customer
( cust_id int,
cust_address struct<aptno:string,
street:string,
city:string,
zip:string>
);