url_encode
関数
適用対象: Databricks SQL Databricks Runtime 11.3 LTS 以降
application/x-www-form-urlencoded 形式に文字列を変換します。
構文
url_encode(str)
引数
str
: エンコードする STRING 式。
戻り値
application/x-www-form-urlencoded (www.w3.org) 形式に準拠する STRING
。
例
> SELECT url_encode('http://spark.apache.org/path?query=1');
http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1
> SELECT url_decode('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1');
http://spark.apache.org/path?query=1
> SELECT url_decode('http%3A%2F%2spark.apache.org');
Error: Illegal argument
> SELECT parse_url('http://spark.apache.org/path?query=1', 'QUERY', 'query');
1
> SELECT parse_url(url_decode('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1'), 'HOST');
1