Mysql Replace函数使用

1.今天发现数据库中数据有点问题,有些数据在获取的时候多了‘&nbsp’这样的字符。发现SQL有Replace这样的函数。

  用法:

  update tablename set colname=replace(colname,'&nbsp','');

  tablename 是表名;

  colname 是列名;

将字符‘&nbsp’替换为NULL

posted @ 2013-04-09 19:55  bore3601  阅读(188)  评论(0编辑  收藏  举报