目录

MySQL INSERT() 函数

示例

将字符串 "Example" 插入字符串 "91xjr.com"。替换前九个字符:

SELECT INSERT("91xjr.com", 1, 9, "Example");
亲自试一试 »

定义和用法

INSERT() 函数在字符串中的指定位置插入一定数量的字符。

语法

INSERT( string, position, number, string2)

参数值

Parameter Description
string Required. The string that will be modified
position Required. The position where to insert string2
number Required. The number of characters to replace
string2 Required. The string to insert into string

返回值

  • 如果位置是在长度之外字符串,这个函数返回字符串
  • 如果数字高于其余的长度字符串,这个函数取代了字符串位置直到结束字符串

技术细节

工作于: 从 MySQL 4.0 开始

更多示例

示例

将字符串 "no" 插入字符串 "91xjr.com"。替换三个字符,从位置 11 开始:

SELECT INSERT("91xjr.com", 11, 3, "no");
亲自试一试 »