メインコンテンツまでスキップ

url_extract_host

URL_EXTRACT_HOST

説明

URL文字列からホストを抽出します。

構文

url_extract_host(str)

パラメータ

  • str:ホスト文字列を抽出する対象の文字列です。strが文字列型でない場合、暗黙のキャストを試みます。

返り値

エンコードされた文字列を返します。

mysql> select url_extract_host('httpa://starrocks.com/test/api/v1');
+-------------------------------------------------------+
| url_extract_host('httpa://starrocks.com/test/api/v1') |
+-------------------------------------------------------+
| starrocks.com |
+-------------------------------------------------------+