PARSE_URL (Lakehouse v2)
Extracts a specified part from a URL string.
Analyze Syntax
Section titled “Analyze Syntax”func.parse_url(<url>, <part>)Analyze Examples
Section titled “Analyze Examples”func.parse_url('https://example.com/path?q=1', 'HOST')
┌───────────────┐│ 'example.com' │└───────────────┘SQL Syntax
Section titled “SQL Syntax”PARSE_URL(<url>, <part>)SQL Examples
Section titled “SQL Examples”SELECT PARSE_URL('https://example.com/path?q=1', 'HOST');
┌─────────────┐│ example.com │└─────────────┘