我们将在MySQL中使用Min()函数从某些特定列获取最小值。
用法:
MIN(column_name)
参数:MIN()函数接受如上所述和以下描述的单个参数。
- column_name:我们必须从中返回最小值的列名。
返回值:MIN()函数从表中的特定列返回最小值。
模块安装:使用以下命令安装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 MIN(salary) AS min_salary FROM publishers";
db_con.query(query, (err, rows) => {
if(err) throw err;
console.log(rows);
});
});
输出:
范例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 MIN(salary) AS min_salary
FROM publishers WHERE id < 7";
db_con.query(query, (err, rows) => {
if(err) throw err;
console.log(rows);
});
});
输出:
相关用法
- 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 Max()用法及代码示例
- Node.js MySQL SUM()用法及代码示例
- Node.js MySQL AVG()用法及代码示例
- Node.js MySQL Count()用法及代码示例
- Node.js MySQL TRIM()用法及代码示例
- Node.js MySQL UCASE()用法及代码示例
注:本文由纯净天空筛选整理自pratikraut0000大神的英文原创作品 NodeJS MySQL Min() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。