I have seen this but it does not work on my data.
I have this data:
1, John, a@com;b@com2,32
2, Jack, ab@com;c@com2,33
and loaded them to hive by:
create table t7(id int,name string, email Array<string>, age int)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ','
COLLECTION items terminated by ';'
STORED AS textfile;
Load data inpath '/user/maria_dev/7.txt' into table t7;
and the select output
but I cannot search specific value whithin the array

So, what am I missing?

