INSERT()函數是MySQL中的內置函數,用於從一個字符串中刪除某些字符後,將字符串插入另一個字符串中的某個位置。
用法:
INSERT(string_1, position, number_of_characters_to_delete, string_2)
參數:它采用四個參數,如下所示:
- string_1:這是作為參數傳遞的給定主字符串。
- position:string_2將插入到此位置。
- number_of_characters_to_delete:這是在給定位置要從string_1刪除的字符數。
- string_2:這是給定的用於插入的新字符串。
返回值:從string_1刪除字符然後插入string_2後,它將返回一個新字符串。
模塊安裝:使用以下命令安裝mysql模塊:
npm install mysql
數據庫:我們的SQL Publishers表預覽以及示例數據如下所示:
範例1:
index.js
const mysql = require("mysql");
let db_con = mysql.createConnection({
host:"localhost",
user:"root",
password:'',
database:'gfg_db'
});
db_con.connect((err) => {
if (err) {
console.log("Database Connection Failed !!!", err);
return;
}
console.log("We are connected to gfg_db database");
// Here is the query
let query =
"SELECT INSERT('GeeksforGeeks', 1, 8, 'All Are ') AS output";
db_con.query(query, (err, rows) => {
if(err) throw err;
console.log(rows);
});
});
使用以下命令運行index.js文件:
node index.js
輸出:在這裏,位置8的“ GeeksforGeeks”中的前8個字符被刪除。然後插入string_2-“ All Are Geeks”
範例2:
index.js
const mysql = require("mysql");
let db_con = mysql.createConnection({
host:"localhost",
user:"root",
password:'',
database:'gfg_db'
});
db_con.connect((err) => {
if (err) {
console.log("Database Connection Failed !!!", err);
return;
}
console.log("We are connected to gfg_db database");
// Here is the query
let query =
"SELECT INSERT(name, 1, 0, 'Publisher - ') AS name FROM publishers";
db_con.query(query, (err, rows) => {
if(err) throw err;
console.log(rows);
});
});
使用以下命令運行index.js文件:
node index.js
輸出:
相關用法
- Node.js MySQL POSITION()用法及代碼示例
- Node.js MySQL LEFT()用法及代碼示例
- Node.js MySQL LENGTH()用法及代碼示例
- Node.js MySQL LOCATE()用法及代碼示例
- Node.js MySQL LOWER()用法及代碼示例
- Node.js MySQL LPAD()用法及代碼示例
- Node.js MySQL LTRIM()用法及代碼示例
- Node.js MySQL MID()用法及代碼示例
- Node.js MySQL Min()用法及代碼示例
- Node.js MySQL Max()用法及代碼示例
- Node.js MySQL SUM()用法及代碼示例
- Node.js MySQL AVG()用法及代碼示例
- Node.js MySQL Count()用法及代碼示例
- Node.js MySQL TRIM()用法及代碼示例
- Node.js MySQL UCASE()用法及代碼示例
注:本文由純淨天空篩選整理自pratikraut0000大神的英文原創作品 Node.js MySQL INSERT() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。