codecamp

SQL REPLACE()字符串替换函数

SQL REPLACE()字符串替换函数


实例

 把数据库表article中的所有title字段里的w3cschool字符串替换成hello。
update `article` set title=replace(title,'w3cschool','hello');

replace函数定义

replace(original-string,search-string,replace-string)

参数

  • original-string: 被搜索的字符串。可为任意长度。 
  • search-string: 要搜索并被 replace-string 替换的字符串。该字符串的长度不应超过 255 个字节。如果 search-string 是空字符串,则按原样返回原始字符串。 
  • replace-string: 该字符串用于替换 search-string。可为任意长度。如果 replace-string 是空字符串,则删除出现的所有 search-string。 

说明

 用字符串表达式3替换字符串表达式1中出现的所有字符串表达式2的匹配项。返回新的字符串。
 如果有某个参数为 NULL,此函数返回 NULL。
SQL ISNULL()、NVL()、IFNULL() 和 COALESCE() 函数
SQL TRIM()函数去除字符串头尾空格
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

实例/测验

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }