加入收藏 | 设为首页 | 会员中心 | 我要投稿 常州站长网 (https://www.0519zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

mysql-使用DISTINCT的REGEXP_REPLACE

发布时间:2021-02-28 05:02:45 所属栏目: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_

我正在尝试使用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,'m') as clean_phone
from phone

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

—计数

select 
   count(REGEXP_REPLACE(phone_number,'m')) as 
   clean_phone
from phone

—工作正常->
clean_phone
6

-独特的clean_phone

select 
   distinct(REGEXP_REPLACE(phone_number,'m')) as 
   clean_phone
from phone

—返回空->
clean_phone

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

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

select  distinct REGEXP_REPLACE(phone_number,'m') as 
   clean_phone
from phone

.

    select distinct  clear_phone from(
    select   REGEXP_REPLACE(phone_number,'m')  clear_phone
   from phone ) t 

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

  insert into dummy_table(clear_phone)
  select   REGEXP_REPLACE(phone_number,'m')  
  from phone;

  select distinct clear_phone from dummy_table;

(编辑:常州站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读