Use UTF-8 encoding to complete the URL encoding of the provided text. Typically used to encode parameter information passed as part of a URL
URL_ENCODE( <str> )
| Parameters | Description |
|---|---|
<str> | String to be encoded |
UTF-8 encoding completes the URL encoding of the provided text
select URL_ENCODE('Doris Q&A');
+-------------------------+ | url_encode('Doris Q&A') | +-------------------------+ | Doris+Q%26A | +-------------------------+