GET_JSON_STRING (Lakehouse v2)
Extracts a string value from a JSON object by a specified path.
Analyze Syntax
Section titled “Analyze Syntax”func.get_json_string(get_column(table, 'data'), '$.name')Analyze Examples
Section titled “Analyze Examples”func.get_json_string(get_column(table, 'data'), '$.name')
┌───────┐│ Alice │└───────┘SQL Syntax
Section titled “SQL Syntax”GET_JSON_STRING(<data>, '$.name')SQL Examples
Section titled “SQL Examples”SELECT GET_JSON_STRING('{"name": "Alice"}', '$.name');
┌───────┐│ Alice │└───────┘