如何在 MySQL 中提取 URL 的一部分?
mysqlmysqli database
您需要使用 MySQL 中的 SUBSTRING_INDEX() 函数来提取 URL 的一部分。
让我们首先创建一个表−
mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, URL text ); Query OK, 0 rows affected (0.53 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable(URL) values('https:\www.example.com\homepage'); Query OK, 1 row affected (0.27 sec) mysql> insert into DemoTable(URL) values('https:\www.onlinetest.com\welcome\indexpage'); Query OK, 1 row affected (0.12 sec)
以下是使用 select 语句显示表中的所有记录的查询 −
mysql> select *from DemoTable;
这将产生以下输出。在这里,我们只能看到一个斜线,因为 MySQL 内部会在结果中删除一个斜线 −
+----+---------------------------------------------+ | Id | URL | +----+---------------------------------------------+ | 1 | https:\www.example.com\homepage | | 2 | https:\www.onlinetest.com\welcome\indexpage | +----+---------------------------------------------+ 2 rows in set (0.00 sec)
以下是在 MySQL 中提取 URL 部分的查询 −
mysql> select substring_index(URL,'\',-1) from DemoTable;
这将产生以下输出 −
+------------------------------+ | substring_index(URL,'\',-1) | +------------------------------+ | homepage | | indexpage | +------------------------------+ 2 rows in set (0.00 sec)