JSON_EXTRACT_STRING

Overview

Extracts a value from a JSON object by path and returns it as STRING. Returns NULL if the path does not exist or the value is null.

Syntax

JSON_EXTRACT_STRING(<json>, <path>)

Parameters

  • <json>: JSON type, the source data. Strings must first be converted using PARSE_JSON.
  • <path>: STRING type, a JSONPath expression such as '$.field'.

Examples

SELECT json_extract_string(PARSE_JSON('{"name":"Alice"}'), '$.name'); -- Alice -- Path does not exist, returns NULL SELECT json_extract_string(PARSE_JSON('{"name":"Alice"}'), '$.other'); -- NULL -- Value is null, returns NULL SELECT json_extract_string(PARSE_JSON('{"name":null}'), '$.name'); -- NULL