URL_ENCODE (Lakehouse v2)
Encodes a string for use in a URL.
Analyze Syntax
Section titled “Analyze Syntax”func.url_encode(<str>)Analyze Examples
Section titled “Analyze Examples”func.url_encode('hello world')
┌─────────────────┐│ 'hello%20world' │└─────────────────┘SQL Syntax
Section titled “SQL Syntax”URL_ENCODE(<str>)SQL Examples
Section titled “SQL Examples”SELECT URL_ENCODE('hello world');
┌───────────────┐│ hello%20world │└───────────────┘