URL_ENCODE

Encodes a string for use in a URL.

Analyze Syntax

func.url_encode(<str>)

Analyze Examples

func.url_encode('hello world')

┌─────────────────┐
 'hello%20world'  
└─────────────────┘

SQL Syntax

URL_ENCODE(<str>)

SQL Examples

SELECT URL_ENCODE('hello world');

┌───────────────┐
 hello%20world  
└───────────────┘