nodejs 中使用 mysql 链接访问数据库
当前路径下cmd输入
npm install mysql (在当前项目下安装mysql包)
npm i mysql
在 指定的 js 文件中引入 mysql 进行相关配置
// 1 引入
const mysql = require('mysql');
// 2 创建链接配置
const conn = mysql.createConnection({
host:'localhost', // 主机名 (服务器地址)
user:'root', //用户名
password:'root', // 密码
database:'数据库名字', // 写上自己要连接的数据库名字
})
// 3 建立链接
conn.connection()
// 4 生成sql语句 增删改查操作
let sql = '.....'
//5 执行sql语句
conn.query(sql, (err, result) => {
if(err){
console.log(err);
return
}
// 6 处理结果
console.log(result)
})
查询语句
select * from table;
select 字段名,… from table;
select 字段名,… from table where 条件
insert into table values (字段值, …)
insert into table (字段名,…) values (字段值,…)
更新语句
– 如果没有where条件,则会更改表中所有的记录
update table set 字段名=新的字段值 where 条件
– 如果没有where 条件,则会删除表中所有的数据
delete from table where 条件
delete from table
where 条件语句
– 关系运算符 < > >= <= = != <>
where 字段名 > 值
– 逻辑运算 and or
where 条件1 and 条件2 …
where 条件1 or 条件2 …
– in 运算符
where 字段 in (值,…)
模糊查询(关键字查询) like 语句
有两个特殊的字符 % _
%:匹配任意个字符(没有个数限制)
_ :匹配任意一个字符
– %值 匹配的 值 前边可以有任意个字符(包含0个)
select * from table where 字段名 like ‘%值’;
– _值 匹配的 值 前边必须存在一个任意字符
select * from table where 字段名 like ‘_值’;
limit length : 查询指定长度的数据
limit index, length; : 从指定的索引值位置开始,查询执行的长度的数据; 索引值从0开始
select * from table limit length;
select * from table limit index,length;
desc : 降序
asc : 升序 (默认是asc)
select * from table order by 字段名 desc/asc
分组 group by
按照指定的字段进行分组
select * from table group by 字段名
聚合函数