使用 MySQL REGEXP 来忽略数字并只获取字符串和“/”
为此,请使用 REGEXP_REPLACE()。首先,让我们创建一个表 −
mysql> create table DemoTable1595 -> ( -> StudentCode varchar(50) -> ); Query OK, 0 rows affected (0.44 sec)
使用插入命令在表中插入一些记录 −
mysql> insert into DemoTable1595 values('200 John'); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable1595 values('101 Carol/400 Taylor'); Query OK, 1 row affected (0.72 sec) mysql> insert into DemoTable1595 values('101 302 405 Sam/9870'); Query OK, 1 row affected (0.28 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable1595;
这将生成以下输出 −
+----------------------+ | StudentCode | +----------------------+ | 200 John | | 101 Carol/400 Taylor | | 101 302 405 Sam/9870 | +----------------------+ 3 rows in set (0.00 sec)
以下是使用 MySQL REGEXP 来忽略数字并只获取字符串和“/”的查询 −
mysql> select regexp_replace(StudentCode,' *[0-9]+([.,][0-9]+)?(/[0-9]+([.,][0-9]+)?)? *', '') as `GetOnlyStringand/` from DemoTable1595;
这将生成以下输出 −
+-------------------+ | GetOnlyStringand/ | +-------------------+ | John | | Carol/Taylor | | Sam/ | +-------------------+ 3 rows in set (0.00 sec)
广告