URL_DECODE (Lakehouse v2)
Decodes a URL-encoded string.
Analyze Syntax
Section titled “Analyze Syntax”func.url_decode(<str>)Analyze Examples
Section titled “Analyze Examples”func.url_decode('hello%20world')
┌───────────────┐│ 'hello world' │└───────────────┘SQL Syntax
Section titled “SQL Syntax”URL_DECODE(<str>)SQL Examples
Section titled “SQL Examples”SELECT URL_DECODE('hello%20world');
┌─────────────┐│ hello world │└─────────────┘