美文网首页
MySQL 函数 | left & distinct

MySQL 函数 | left & distinct

作者: 乌鲁木齐001号程序员 | 来源:发表于2020-08-23 00:15 被阅读0次
    mysql> select 
      count(distinct left(email,4))as L4,
      count(distinct left(email,5))as L5,
      count(distinct left(email,6))as L6,
      count(distinct left(email,7))as L7,
    from SUser;
    

    相关文章

      网友评论

          本文标题:MySQL 函数 | left & distinct

          本文链接:https://www.haomeiwen.com/subject/wnkvjktx.html