Only to find a successful way, not to find excuses for failure!
分类: 数据库开发技术
2013-01-22 22:22:01
需求:需要将数据表中一个字段的值里面的所有的 . 替换成 _
原来的数据是 site.title site.keywords ....
替换后要为 site_title site_keywords
使用的SQL语句如下:
update `setting` set ckey=replace(ckey, '.', '_');
setting是表名
ckey是字段名