Struct Functions

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