字符串连接应用
发布时间:2022-03-30 13:08 所属栏目:115 来源:互联网
导读:需求:在一个字符串后面追加指定的json串(一般是json串) CREATE PROCEDURE `update_add_white`( in update_info VARCHAR(255) ) set @update_whilte=(select left(cfg_value,LENGTH(cfg_value)-1) from common_config_bak where id=112); set @updated_whi
需求:在一个字符串后面追加指定的json串(一般是json串) CREATE PROCEDURE `update_add_white`( in update_info VARCHAR(255) ) 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 (编辑:ASP站长网) |
相关内容
网友评论
推荐文章
热点阅读