Struct Functions
Work with structured data by creating and manipulating nested fields.
NAMED_STRUCT ( (name1, val1) [, ...] )
Creates a struct with the specified field names and values
> select named_struct('a','xyz','1',123);
{a:xyz,1:123}
Last updated