PARSE_JSON (Lakehouse v2)
Parses a JSON string and returns a JSON value.
Analyze Syntax
Section titled “Analyze Syntax”func.parse_json('{"a":1}')Analyze Examples
Section titled “Analyze Examples”func.parse_json('{"a": 1}')
┌─────────────┐│ JSON object │└─────────────┘SQL Syntax
Section titled “SQL Syntax”PARSE_JSON('{"a":1}')SQL Examples
Section titled “SQL Examples”SELECT PARSE_JSON('{"name": "Alice"}');
┌──────────────────┐│ {"name":"Alice"} │└──────────────────┘