当前位置:Gxlcms > mysql > mysql中split函数

mysql中split函数

时间:2021-07-01 10:21:17 帮助过:404人阅读

在mysql中并没有split函数,需要自己写: 1)获得按指定字符分割的字符串的个数: Sql代码 DELIMITER$$ DROP FUNCTION IFEXISTS`sims`.`func_get_split_string_total`$$ CREATE DEFINER=`root`@`localhost` FUNCTION `func_get_split_string_total`( f_strin

在mysql中并没有split函数,需要自己写:

1)获得按指定字符分割的字符串的个数:

Sql代码

  1. DELIMITER $$
  2. DROP FUNCTION IF EXISTS `sims`.`func_get_split_string_total`$$
  3. CREATE DEFINER=`root`@`localhost` FUNCTION `func_get_split_string_total`(
  4. f_string varchar(1000),f_delimiter varchar(5)
  5. ) RETURNS int(11)
  6. BEGIN
  7. declare returnInt int(11);
  8. if length(f_delimiter)=2 then
  9. return 1+(length(f_string) - length(replace(f_string,f_delimiter,'')))/2;
  10. else
  11. return 1+(length(f_string) - length(replace(f_string,f_delimiter,'')));
  12. end if;
  13. END$$
  14. DELIMITER ;

例:func_get_split_string_total('abc||def||gh','||') 结果为3

2)得到第i个分割后的字符串。

Sql代码

  1. DELIMITER $$
  2. DROP FUNCTION IF EXISTS `sims`.`func_get_split_string`$$
  3. CREATE DEFINER=`root`@`localhost` FUNCTION `func_get_split_string`(
  4. f_string varchar(1000),f_delimiter varchar(5),f_order int) RETURNS varchar(255) CHARSET utf8
  5. BEGIN
  6. declare result varchar(255) default '';
  7. set result = reverse(substring_index(reverse(substring_index(f_string,f_delimiter,f_order)),f_delimiter,1));
  8. return result;
  9. END$$
  10. DELIMITER ;

例如:func_get_split_string('abc||def||gh','||',2) 为def

3) 需求:A表中的一个字段值为1||2, 在select 时要通过和B字典表的关联得到a,b

Sql代码

  1. CREATE DEFINER=`root`@`localhost` FUNCTION `getDictName`(v_str varchar(100)) RETURNS varchar(100) CHARSET utf8
  2. BEGIN
  3. DECLARE i int(4);
  4. DECLARE dictCode varchar(100);
  5. DECLARE dictName varchar(100);
  6. DECLARE returnStr varchar(100);
  7. set i = 1;
  8. set returnStr = '';
  9. if(v_str is null or length(v_str)=0) then
  10. return returnStr;
  11. else
  12. while i<=func_get_split_string_total(v_str,'||')
  13. do
  14. set dictCode = func_get_split_string(v_str,'||',i);
  15. select names into dictName from sims_dd_dict where code = dictCode;
  16. set returnStr = concat(returnStr,',',dictName); -- 这里要用中文的逗号,否则导出EXCEL的时候会串行,因为程序中是以逗号分隔的
  17. set i = i+1;
  18. end while;
  19. set returnStr = subString(returnStr,2);
  20. return returnStr;
  21. end if;
  22. END$$

人气教程排行