1.MySQL replace 函数
语法:REPLACE(str,from_str,to_str)
用途:把str(字段)中出现from_str的全部替换为to_str
UPDATE sp_employeezzvalidate SET `name` = REPLACE(name,‘ ‘,‘‘);//此处为去掉字段中的空格
标签:gpo class log from ida ali rom sql div
语法:REPLACE(str,from_str,to_str)
用途:把str(字段)中出现from_str的全部替换为to_str
UPDATE sp_employeezzvalidate SET `name` = REPLACE(name,‘ ‘,‘‘);//此处为去掉字段中的空格
标签:gpo class log from ida ali rom sql div
原文地址:https://www.cnblogs.com/rocker-pg/p/8359977.html