url_extract_host
URL_EXTRACT_HOST
Description
extract host from url string.
Syntax
url_extract_host(str)
Parameters
str
: the string to extract its host string. Ifstr
is not a string type, it will try implicit cast first.
Return values
Return an encode string.
Examples
mysql> select url_extract_host('httpa://starrocks.com/test/api/v1');
+-------------------------------------------------------+
| url_extract_host('httpa://starrocks.com/test/api/v1') |
+-------------------------------------------------------+
| starrocks.com |
+-------------------------------------------------------+