次の方法で共有


try_url_decode 関数

適用対象: Databricks Runtime 15.4 以降

文字列を application/x-www-form-urlencoded 形式から変換して元に戻します。または、形式が正しくない場合は NULL です。

構文

try_url_decode(str)

引数

  • str: デコードする STRING 式。

返品

STRING です。

文字列が application/x-www-form-urlencoded 形式に準拠していない場合、関数は NULL を返します。 代わりに CANNOT_DECODE_URL を発生させるには、url_decode() 関数を使います。

> SELECT try_url_encode('http://spark.apache.org/path?query=1');
 http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1

> SELECT try_url_decode('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1');
 http://spark.apache.org/path?query=1

> SELECT try_url_decode('http%3A%2F%2spark.apache.org');
 NULL

> SELECT url_decode('http%3A%2F%2spark.apache.org');
 Error: CANNOT_DECODE_URL

> SELECT parse_url('http://spark.apache.org/path?query=1', 'QUERY', 'query');
 1

> SELECT parse_url('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1', 'QUERY', 'query');
 1