通过在 MySQL 中传递名称来获取域名?
要通过在 MySQL 中传递名称来获取域名,可以使用 substring_index()。我们首先创建一个表 -
mysql> create table DemoTable ( UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY, UserMailId varchar(200) ); Query OK, 0 rows affected (0.77 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable(UserMailId) values('[email protected]'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable(UserMailId) values('[email protected]'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable(UserMailId) values('[email protected]'); Query OK, 1 row affected (0.20 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable;
这将产生以下输出 -
+--------+-----------------------+ | UserId | UserMailId | +--------+-----------------------+ | 1 | [email protected] | | 2 | [email protected] | | 3 | [email protected] | +--------+-----------------------+ 3 rows in set (0.00 sec)
以下是通过在 MySQL 中传递名称来获取域名的查询。
mysql> select UserId,UserMailId, substring_index(substring_index(UserMailId, '@', -1), '.', 1) AS `Domain_Name` from DemoTable;
这将产生以下输出。在此,获取了域名 -
+--------+-----------------------+-------------+ | UserId | UserMailId | Domain_Name | +--------+-----------------------+-------------+ | 1 | [email protected] | facebook | | 2 | [email protected] | yahoo | | 3 | [email protected] | gmail | +--------+-----------------------+-------------+ 3 rows in set (0.01 sec)
广告