URL_ENCODE
This function will escape the given input value by encoding it so that it can be safely included in URL query parameter names and values:
Alphanumeric characters are not encoded.
The characters
.
,-
,*
and_
are not encoded.The ASCII space character is encoded as
+
.All other characters are converted to UTF-8 and the bytes are encoded as the string
%XX
whereXX
is the uppercase hexadecimal value of the UTF-8 byte.
Syntax
Arguments
VALUE
VALUE
Type: string
The value to encode.
Returns
Type: string
The encoded VALUE
.
Examples
Transformation job example
SQL
Query result
Last updated