ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

mysql-使用DISTINCT的REGEXP_REPLACE

2019-12-11 05:16:22  阅读:440  来源: 互联网

标签:mysqli mysql-8-0 sql mysql


我正在尝试使用REGEXP_REPLACE与众不同,并返回0行.

我已经在MySQLP v8.0中创建了一个测试表

   CREATE TABLE phone(
   id serial primary key,
   phone_number char(25));

   INSERT INTO phone (phone_number)
   VALUES ('(423) 330-9999');

   INSERT INTO phone (phone_number)
   VALUES ('(423)3309999');

   INSERT INTO phone (phone_number)
   VALUES ('423-330-1111)');

   INSERT INTO phone (phone_number)
   VALUES ('1-423-330-6666');

   INSERT INTO phone (phone_number)
   VALUES ('1A423*330*1111');

   INSERT INTO phone (phone_number)
   VALUES ('5553301111');

– 然后

select 
   REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm') as clean_phone
from phone

—工作正常->
clean_phone
4233309999
4233309999
4233301111
14233306666
14233301111
5553301111

—计数

select 
   count(REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm')) as 
   clean_phone
from phone

—工作正常->
clean_phone
6

-独特的clean_phone

select 
   distinct(REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm')) as 
   clean_phone
from phone

—返回空->
clean_phone

我不明白为什么区分不起作用?

解决方法:

Distinct不是函数,因此您不需要distinct(),而仅需要distinct

select  distinct REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm') as 
   clean_phone
from phone

.

    select distinct  clear_phone from(
    select   REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm')  clear_phone
   from phone ) t 

如果错误仍然存​​在,您可以尝试使用虚拟表的插入/选择

  insert into dummy_table(clear_phone)
  select   REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm')  
  from phone;

  select distinct clear_phone from dummy_table;

标签:mysqli,mysql-8-0,sql,mysql
来源: https://codeday.me/bug/20191211/2106556.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有