【问题标题】:REGEXP_REPLACE with DISTINCTREGEXP_REPLACE 与 DISTINCT
【发布时间】:2019-06-26 15:20:34
【问题描述】:

我正在尝试对 REGEXP_REPLACE 使用 distinct 并返回 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

--- 工作正常 -> 清洁电话 4233309999 4233309999 4233301111 14233306666 14233301111 5553301111

---计数

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

--- 工作正常 -> 清洁电话 6

-- 不同的 clean_phone

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

--- 返回空 -> 干净的手机

我不明白为什么 distinct 不起作用?

【问题讨论】:

    标签: mysql sql mysql-8.0


    【解决方案1】:

    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;
    

    【讨论】:

    • 我试过了,还是返回空。使用它来测试db-fiddle.com db:MySSQL v8.0 这工作得非常好 select REGEXP_REPLACE(phone_number, '[^0-9]', '',1, 0, 'm') as clean_phone from phone 添加 distinct like you建议仍然不返回任何行。
    • 尽量不要使用 db-fiddle .. 可能是这个工具的一个错误 .. 我还添加了一个基于不同于子选择的选择的测试 .. 并且最后一个基于插入/选择的测试一张假表..
    • 我开始怀疑 db-fiddle 存在错误!感谢您的帮助。
    猜你喜欢
    • 1970-01-01
    • 2017-01-25
    • 1970-01-01
    • 1970-01-01
    • 2013-04-10
    • 2013-12-20
    • 2018-11-23
    • 2018-09-29
    相关资源
    最近更新 更多