mysql split函数字符串分割问题

发布时间:2020-07-23编辑:脚本学堂
有关mysql split函数的二种实现方法,split函数实现字符串分割的问题与解决方法,需要的朋友参考下。

mysql中没有字符串分割函数,需要自己实现mysql split函数,这里分享两个函数:
 

复制代码 代码示例:

DELIMITER $$

CREATE DEFINER=`root`@`%` FUNCTION `func_get_split_string_total`(
f_string varchar(1000),f_delimiter varchar(5)
) RETURNS int(11)
BEGIN
  return 1+(length(f_string) - length(replace(f_string,f_delimiter,'')));
END$$

DELIMITER ;
 
DELIMITER $$

CREATE DEFINER=`root`@`%` FUNCTION `func_get_split_string`(
f_string varchar(1000),f_delimiter varchar(5),f_order int) RETURNS varchar(255) CHARSET utf8
BEGIN
  declare result varchar(255) default '';
  set result = reverse(substring_index(reverse(substring_index(f_string,f_delimiter,f_order)),f_delimiter,1));
  return result;
END$$

DELIMITER ;

在mysql中执行split函数的方法:
 

select function_name(parameter)

在创建函数时,遇到了问题。显示错误:
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL,
or READS SQL DATA in its declaration and binary logging is enabled
(you *might* want to use the less safe log_bin_trust_function_creators
variable

解决方法:
1、mysql> SET GLOBAL log_bin_trust_function_creators = 1;
2、系统启动时,加上--log-bin-trust-function-creators 参数为1
3、直接在my.ini的[mysqld]区段加上log-bin-trust-function-creators=1
使用第一种方法后,就可以顺利的创建函数了,可以使用字符串分割函数。