我们将在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 Max()用法及代码示例
- Node.js GM solarize()用法及代码示例
- Node.js process.nextTick()用法及代码示例
- PHP min( )用法及代码示例
- d3.js d3.min()用法及代码示例
- p5.js min()用法及代码示例
- Tensorflow.js tf.min()用法及代码示例
- MySQL FIELD()用法及代码示例
- MySQL CHARACTER_LENGTH()用法及代码示例
- MySQL PERIOD_ADD()用法及代码示例
- MySQL CONCAT_WS()用法及代码示例
- MySQL SYSTEM_USER()用法及代码示例
- MySQL FORMAT()用法及代码示例
- MySQL INSTR()用法及代码示例
- MySQL GET_FORMAT()用法及代码示例
注:本文由纯净天空筛选整理自pratikraut0000大神的英文原创作品 Node.js MySQL Min() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。