Syntax
Parameters
| Parameter | Description | Supported input types |
|---|---|---|
<expression> | The string to be decoded. | TEXT |
Return Type
TEXT
Example
The example below decodes the percent-encoded parameters of an URL:https://www.firebolt.io/?example_id=1&hl=en
Reference material for URL_DECODE function
URL_DECODE(<expression>)
| Parameter | Description | Supported input types |
|---|---|---|
<expression> | The string to be decoded. | TEXT |
TEXT
SELECT URL_DECODE('https://www.firebolt.io/?example_id%3D1%26hl%3Den');
https://www.firebolt.io/?example_id=1&hl=en
Was this page helpful?