當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js MySQL UCASE()用法及代碼示例


UCASE()函數是MySQL中的內置函數,用於將給定字符串的所有字符轉換為大寫。

用法:

UCASE(input_string)

參數:它采用一個參數,如下所示:

  • input_string:這是用於將該字符串轉換為大寫形式的字符串。

返回值:它返回一個新的大寫字符串。

模塊安裝:使用以下命令安裝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 UCASE('This iNpUT  
           strinG @!#$%^&*()?') AS uppercase_name"; 
  
    db_con.query(query, (err, rows) => { 
        if(err) throw err; 
  
        console.log(rows); 
    }); 
});

使用以下命令運行index.js文件:

node index.js

輸出:

範例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 name, UCASE(name)  
       AS uppercase_name FROM publishers"; 
  
    db_con.query(query, (err, rows) => { 
        if(err) throw err; 
  
        console.log(rows); 
    }); 
});

使用以下命令運行index.js文件:

node index.js

輸出:

相關用法


注:本文由純淨天空篩選整理自pratikraut0000大神的英文原創作品 NodeJs MySQL UCASE() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。