解决mysql5.7及以下版本无法解析json字符串的问题
#把key->value(json字符串)拼成sql语句
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:主机域名、网页空间、营销软件、网站建设、花溪网站维护、网站推广。
DELIMITER //
DROP FUNCTION kvJsonData//
CREATE FUNCTION kvJsonData(tableName char(20),medKeys text,medValues text,orderId int(11))
returns text
BEGIN
declare num int(11);
declare count int(2) default 1;
declare strValues text default "";
declare strKeys text;
declare ret text default "";
set strKeys=concat(medKeys,',`order_id`');
set ret=concat("insert into ",tableName,"(",strKeys,") values");
set num= LENGTH(medValues) - LENGTH(REPLACE(medValues, '#', ''))+1;
while count<=num do
if count=1 then
set strValues=concat(SUBSTRING_INDEX(medValues,'#',count),',',orderId);
else
set strValues=SUBSTRING_INDEX(medValues,'#',count);
set strValues=SUBSTRING_INDEX(strValues,'#',-1);
set strValues=concat(strValues,',',orderId);
end if;
set ret=concat(ret,"(",strValues,"),");
set count=count+1;
end while;
set ret=substring(ret,1,LENGTH(ret)-1);
return ret;
END
//
DELIMITER ;
网页题目:解决mysql5.7及以下版本无法解析json字符串的问题
URL分享:http://pwwzsj.com/article/jopcpo.html