MySQL中substring_index函数的作用是什么-古蔺大橙子建站
RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
MySQL中substring_index函数的作用是什么

本篇文章为大家展示了MySQL中substring_index函数的作用是什么,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

公司主营业务:成都网站制作、成都做网站、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联推出丹东免费做网站回馈大家。

MySQL的substring_index函数简析
 
假定有一张表,其中有个字段是 email 保存了电子邮箱,然后,我想统计每种邮箱的占比情况。
我们知道电子信箱的格式是: account@domain ,要实现上面的统计,必须取得 email
字符串中 @ 后面的域名部分。
MySQL提供了一个名为 substring_index 的函数,能够满足我们的需求:
MySQL 5.5 Reference Manual 写道  www.2cto.com  
SUBSTRING_INDEX(str,delim,count)
 
Returns the substring from string str before count occurrences of the delimiter delim.
If count is positive, everything to the left of the final delimiter (counting from the left)
is returned. If count is negative, everything to the right of the final delimiter (counting
from the right) is returned. SUBSTRING_INDEX() performs a case-sensitive match when
searching for delim.
 
> SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2);
 
        -> 'www.mysql'
 
mysql> SELECT SUBSTRING_INDEX('www.mysql.com', '.', -2);
 
        -> 'mysql.com'
 
This function is multi-byte safe. 
   www.2cto.com  
查询语句如下:
Sql代码  
select  
    substring_index(email,'@',-1) as domain,  
    count(distinct email) as count,  
    count(distinct email)  
        / (select count(distinct email) from qzt_resume_basic where email like '%@%')  
        * 100 as percent  
from qzt_resume_basic  
where email like '%@%'   
group by 1   
order by 2 desc   
limit 10;  

上述内容就是MySQL中substring_index函数的作用是什么,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注创新互联行业资讯频道。


当前名称:MySQL中substring_index函数的作用是什么
本文路径:http://scgulin.cn/article/isgpoj.html