mysql命令:删除/替换 字段中包含的字符
删除数据库中某个字段中某个数据
语法:replace(字段,字符1,字符2)
解释如下:
replace是替换语法
字段:数据库中的某个字段,一般是你需要字段
字符1:原字符,你需要替换的字符,比如A(示例学生)
字符2:新字符,替换后的字符,比如B(学号)
示例1: 在news数据表中,把content字段中的A替换成B字符
update `news` set `content`=replace(`content`,'A','B'); //把content字段中的A两个字全部替换成B
示例2:
update `news` set `content`=replace(`content`,'学生','学号'); //把content字段中的学生两个字全部替换成学号
示例3:
update `news` set `content`=replace(`content`,' ',''); //清除news表中content字段中的空格
发表评论