This is the below Hive Table
CREATE EXTERNAL TABLE IF NOT EXISTS SampleTable ( USER_ID BIGINT, NEW_ITEM ARRAY
If you are on Hive 0.10 or later, you could also use inline(ARRAY). It explodes an array of structs into a table.
inline(ARRAY)