mysql substring_index】的更多相关文章

MySQL  substring_index函数 substring_index(str,delim,count)       str:要处理的字符串       delim:分隔符       count:计数 例子:str=www.wikibt.com substring_index(str,'.',1) 结果是:www substring_index(str,'.',2) 结果是:www.wikibt 也就是说,如果count是正数,那么就是从左往右数,第N个分隔符的左边的全部内容    …
substring_index(某个字段,以其分割,第几个分割点之前的值); +---------------------------------------------------------+ | SUBSTRING_INDEX('www.mysql.com', '.', 2) | +---------------------------------------------------------+ | www.mysql | +-------------------------------…
函数简介: SUBSTRING(str,pos) , SUBSTRING(str FROM pos) SUBSTRING(str,pos,len) , SUBSTRING(str FROM pos FOR len) 不带有len 参数的格式从字符串str返回一个子字符串,起始于位置 pos.带有len参数的格式从字符串str返回一个长度同len字符相同的子字符串,起始于位置 pos. 使用 FROM的格式为标准 SQL 语法.也可能对pos使用一个负值.假若这样,则子字符串的位置起始于字符串结尾…
select * from tablename where substring_index(field1,'_',-1)=‘abc' #表中field1的值结构为123_abc…
1. to_date 直接去掉 例如 select log.id from CM_LOGINLOG log  where log.orgid =?  and log.isAuto =?  and log.userid = ? and log.loginDateTime between to_date(?,'yyyy-mm-dd hh24:mi:ss') and sysdate and rownum=1 " select log.id from CM_LOGINLOG log  where log…
之前在一个项目的开发中,有遇到要根据分类来分组获取每组一条按某个条件字段排序的数据结果,于是先自己写了一条语句: select * from `表A` GROUP BY `c`; 上面这个语句有可以根据分类分组获得数据,但是无法对获得的数据进行排序,so 继续完善: select * from `表A` where `del`=0 and `markbok`=1 and `id` in(select SUBSTRING_INDEX(group_concat(`id` order by `add_…
MySQL常用函数介绍 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.操作符介绍 1>.操作符优先级 mysql; +----------+ | +----------+ | +----------+ row in set (0.00 sec) mysql> mysql); +------------+ ) | +------------+ | +------------+ row in set (0.00 sec) mysql> mysql> 如果想改变优…
mysql方法来源于:http://www.cnblogs.com/jjcc/p/5896588.html ###在网上看到一篇,非常赞的方法### 比如说要获取班级的前3名,mysql就可以用GROUP_CONCAT  + GROUP BY + substring_index实现. 考试表 DROP TABLE IF EXISTS `test`;CREATE TABLE `test` (`id` int(11) DEFAULT NULL,`name` varchar(20) DEFAULT N…
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, ev…
mysql处理字符串的两个绝招:substring_index,concat 最近老是碰到要处理数据库中字符串的处理,发现用来用去也就是这两个函数: 1.substring_index(str,delim,count)       str:要处理的字符串       delim:分隔符       count:计数 例子:str= substring_index(str,'.',1) 结果是:www substring_index(str,'.',2) 结果是:www.google 也就是说,如…