TOP_LEVEL_DOMAIN
描述
语法
VARCHAR top_level_domain(VARCHAR url)
在 URL 中提取出顶级域名返回,若为不合法的 URL,则返回空字符串
mysql [(none)]>select top_level_domain("www.baidu.com");
+-----------------------------------+
| top_level_domain('www.baidu.com') |
+-----------------------------------+
| com |
+-----------------------------------+
mysql [(none)]>select top_level_domain("www.google.com.cn");
+---------------------------------------+
| top_level_domain('www.google.com.cn') |
+---------------------------------------+
| cn |
+---------------------------------------+
mysql [(none)]>select top_level_domain("wwwwwwww");
+------------------------------+
| top_level_domain('wwwwwwww') |
+------------------------------+
| |
+------------------------------+
关键词
TOP_LEVEL_DOMAIN