RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
字符串拼接应用
需求:在一个字符串后面追加指定的json串(一般是json串)

CREATE PROCEDURE `update_add_white`(
in update_info VARCHAR(255)

COMMENT '增加白名单' 
BEGIN
set @update_whilte=(select left(cfg_value,LENGTH(cfg_value)-1) from common_config_bak where id=112);
set @updated_whilte=(select concat(@update_whilte,update_info));
update common_config_bak set cfg_value=@updated_whilte where id=112;
set @updated_info=(select cfg_value from common_config_bak where id=112);
select @updated_info 'updated_info';
END 

新闻名称:字符串拼接应用
当前URL:http://scyingshan.cn/article/jhdosp.html