- Categories:
Semi-structured and structured data functions (Extraction)
GET_PATH , :¶
Extracts a value from semi-structured data using a path name.
GET_PATH is a variation of GET; it takes a VARIANT, OBJECT, or ARRAY column name as the first argument, and extracts the value of the field or the element according to the path name provided as the second argument.
Syntax¶
Arguments¶
column_identifierAn expression that evaluates to a VARIANT, OBJECT, or ARRAY column.
path_nameAn expression that evaluates to a VARCHAR value. This value specifies the path to the field or element that you want to extract.
For structured types, you must specify a string constant.
Returns¶
The returned value is the specified element of the ARRAY, or the value that corresponds to the specified key of a key-value pair in the OBJECT.
If the input object is a semi-structured OBJECT, ARRAY, or VARIANT value, the function returns a VARIANT value. The data type of the value is VARIANT because:
In an ARRAY value, each element is of type VARIANT.
In an OBJECT value, the value in each key-value pair is of type VARIANT.
If the input object is a structured OBJECT, structured ARRAY, or MAP, the function returns a value of the type specified for the object.
For example, if the type of the input object is ARRAY(NUMBER), the function returns a NUMBER value.
Usage notes¶
GET_PATH is equivalent to a chain of GET functions. It returns NULL if the path name doesn’t correspond to any element.
The path name syntax is standard JavaScript notation; it consists of a concatenation of field names (identifiers) preceded by periods (for example,
.) and index operators (for example,[<index>]):The first field name doesn’t require the leading period to be specified.
The index values in the index operators can be non-negative decimal numbers (for arrays) or single or double-quoted string literals (for object fields).
For more details, see Querying Semi-structured Data.
GET_PATH also supports a syntactic shortcut using the
:character as the extraction operator that separates the column name (which can contain periods) from the path specifier.To maintain syntactic consistency, the path notation also supports SQL-style double-quoted identifiers, and use of
:as path separators.When the
:operator is used, any integer or string sub-expressions can be included within[].
Examples¶
Create a table with a VARIANT column and insert data. Use the PARSE_JSON function to insert the VARIANT data. The VARIANT values contain nested ARRAY values and OBJECT values.
Extract the id3 value from array2 in each row:
Use the : operator to extract the same id3 value from array2 in each row:
This example is the same as the previous example, but uses SQL-style double-quoted identifiers:
Extract the object_inner_key1a value from the nested OBJECT value in each row:
Use the : operator to extract the same object_inner_key1a values:
This example is the same as the previous example, but uses SQL-style double-quoted identifiers: