MySQL Query to Count Unique Domains from Email Address field(MySQL 查询以从电子邮件地址字段计算唯一域)
问题描述
我想更好地了解我的客户正在使用哪些域.我可以在 PHP 中通过 explode 处理每个地址并以这种方式计算域来轻松完成此操作.但我想知道是否有办法通过简单的 MySQL 查询来获取这些信息?
I'd like to get a better idea of what domains my customers are using. I could easily do this in PHP by explodeing each address and counting the domain that way. But I'm wondering if there's a way to get this information with just a plain MySQL query?
这是示例输出的样子:
gmail.com |3942
yahoo.com |3852
hotmail.com |209
... 以此类推,其中第一列是电子邮件地址域,第二列是该域的地址数.
... and so on, where the first column is the email addresses domain, and the 2nd column is the number of addresses at that domain.
推荐答案
你必须这样做:
SELECT substring_index(email, '@', -1) domain, COUNT(*) email_count
FROM table
GROUP BY substring_index(email, '@', -1)
-- If you want to sort as well:
ORDER BY email_count DESC, domain;
这篇关于MySQL 查询以从电子邮件地址字段计算唯一域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 查询以从电子邮件地址字段计算唯一域
基础教程推荐
- 在多列上分布任意行 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
