JSONPATHSTRING
This section contains reference documentation for the JSONPATHSTRING function.
Was this helpful?
This section contains reference documentation for the JSONPATHSTRING function.
Was this helpful?
Extracts the String value from jsonField
based on 'jsonPath'
, use optional defaultValue
for null or parsing error. This function can only be used in an .
JSONPATHSTRING(jsonField, 'jsonPath', [defaultValue])
jsonField
An Identifier/Expression contains JSON documents.
'jsonPath'
'jsonPath'
` is a literal. Pinot uses single quotes to distinguish them from identifiers.
You can use the to test JSON expressions before you import any data.
The usage examples are based on extracting fields from the following JSON document:
JSONPATHSTRING(data, '$.age')
"24"
JSONPATHSTRING(data, '$.name["nick.name"]')
"Pete"
Follows to read values from JSON documents.
This function can be used in the to extract the age
property into the age
column, as described below: