url_encode
url_encode 介绍
url_encode(str) - 使用特定编码方案将字符串str转换为application/x-www-form-urlencoded格式。
参数:
- str - 需要转换的字符串表达式。
Examples:
> SELECT url_encode('https://spark.apache.org');
https%3A%2F%2Fspark.apache.org
Since: 3.4.0
url_encode(str) - 使用特定编码方案将字符串str转换为application/x-www-form-urlencoded格式。
参数:
Examples:
> SELECT url_encode('https://spark.apache.org');
https%3A%2F%2Fspark.apache.org
Since: 3.4.0