前言:以下是本人學(xué)習(xí)Sequelize,與工作中使用過的一些方法才沧,基本上參考與Sequelize 快速入門
新增
build 方法( 需要使用save方法才能保存到數(shù)據(jù)庫中)
let user = UserModel.build({
name: "JackTeng",
age: "24"
});
user = await user.save();
create 方法(直接保存到數(shù)據(jù)中)
const user = await UserModel.create({
name: "JackTeng",
age: "24"
});
更新
update 方法(注意:更新失敗返回值到第0個值是0迈喉,更新成功則是1)
const updatedUser = await user.update(
{
name: "JackTeng",
age: "25"
},
{
where: {id: 1}
}
);
刪除
destroy 方法
const destroyUser = await user.destroy({
where:{ id: 1 }
});
查詢
findAll 方法(查詢?nèi)?
const users = await User.findAll();
篩選字段查詢(注意:只會返回attribute數(shù)組中到字段)
const users = await UserModel.findAll({
attributes: ['id', 'name', 'age']
});
字段重命名(注意重新命名是:原數(shù)據(jù)庫返回的字段名绍刮,更改為當(dāng)前名)
const users = await UserModel.findAll({
attributes: ['id', 'age', ['name', 'name_a']]
});
條件查詢
const users = await UserModel.findAll({
attributes: ['id', 'name'],
where: {
name: 'JackTeng'
}
});
AND 條件
const Op = Sequelize.Op;
const users = await UserModel.findAll({
attributes: ['id', 'name'],
where: {
[Op.and]: [
{ id: [1, 2] },
{ name: 'JackTeng' }
]
}
});
OR 條件
const Op = Sequelize.Op;
const users = await UserModel.findAll({
attributes: ['id', 'name'],
where: {
[Op.or]: [
{ id: [1, 2] },
{ name: 'JackTeng' }
]
}
});
NOT 條件
const Op = Sequelize.Op;
const users = await UserModel.findAll({
attributes: ['id', 'firstName'],
where: {
[Op.not]: [
{ id: [1, 2] }
]
}
});
查詢單條記錄
findById 方法
const user = await UserModel.findById(1);
findByPk 方法
// 溫馨提示 Sequelize v5+的版本 findById 已經(jīng)被移除了,改用 findByPk 替換
const user = await UserModel.findByPk(1);
findOne 方法
const user = await UserModel.findOne({
where: { name: 'JackTeng' }
});
查詢并獲取數(shù)量
findAndCountAll 方法(會返回總條數(shù))
const result = await UserModel.findAndCountAll({
limit: 10, // 每頁多少條
offset: 0 // 跳過當(dāng)前多少條
});
排序與分頁
排序
const users = await UserModel.findAll({
attributes: ['id', 'firstName'],
order: [
['id', 'DESC']
]
});
分頁
let countPerPage = 2, currentPage = 1;
const users = await UserModel.findAll({
attributes: ['id', 'name'],
limit: countPerPage, // 每頁多少條
offset: countPerPage * (currentPage - 1) // 跳過多少條
});
批量操作
插入
const users = await UserModel.bulkCreate([
{ name: "JackTeng", age: "24"},
{ name: "King", age: "26"},
{ name: "ben", age: "30"}
]);
更新
const Op = Sequelize.Op;
const affectedRows = await UserModel.update(
{ firstName: "King" },
{
where: {
[Op.not]: { firstName: null }
}
}
);
刪除(注意:老鐵慎用呀)
const affectedRows = await UserModel.destroy({
where: { name: 'JackTeng' }
});
關(guān)聯(lián)查詢(首先需要在model里定義關(guān)系)
Model
// ./app/model
'use strict';
module.exports = function(app) {
const DataTypes = app.Sequelize;
const UserInfo = app.model.define('user_info', {...});
// UsersInfo(源) 關(guān)聯(lián) UserMessage(外鍵)
UserInfo.associate = function() {
UserInfo.hasMany(app.model.UserMessage, {
foreignKey: 'user_id', // 外鍵(要查詢的另外一個表), 要查詢的字段
sourceKey: 'user_id', // 源(當(dāng)前查詢的表)挨摸,要查詢的字段
});
};
return UserInfo
};
Service
// ./app/service
'use strict';
const Service = require('egg').Service;
module.exports = app => {
const {
UserInfo,
UserMessage
} = app.model;
class TestService extends Service {
async getUserAndMessage(){
// 獲取用戶和信息
let result = await UserInfo.findAll({
raw: true, // 轉(zhuǎn)為data孩革,而不是實例對象
include: [{
model: UserMessage,
}]
});
}
}
return TestService
}
操作符:
const Op = Sequelize.Op
[Op.and]: {a: 5} // 且 (a = 5)
[Op.or]: [{a: 5}, {a: 6}] // (a = 5 或 a = 6)
[Op.gt]: 6, // id > 6
[Op.gte]: 6, // id >= 6
[Op.lt]: 10, // id < 10
[Op.lte]: 10, // id <= 10
[Op.ne]: 20, // id != 20
[Op.eq]: 3, // = 3
[Op.not]: true, // 不是 TRUE
[Op.between]: [6, 10], // 在 6 和 10 之間
[Op.notBetween]: [11, 15], // 不在 11 和 15 之間
[Op.in]: [1, 2], // 在 [1, 2] 之中
[Op.notIn]: [1, 2], // 不在 [1, 2] 之中
[Op.like]: '%hat', // 包含 '%hat'
[Op.notLike]: '%hat' // 不包含 '%hat'
[Op.iLike]: '%hat' // 包含 '%hat' (不區(qū)分大小寫) (僅限 PG)
[Op.notILike]: '%hat' // 不包含 '%hat' (僅限 PG)
[Op.regexp]: '^[h|a|t]' // 匹配正則表達(dá)式/~ '^[h|a|t]' (僅限 MySQL/PG)
[Op.notRegexp]: '^[h|a|t]' // 不匹配正則表達(dá)式/!~ '^[h|a|t]' (僅限 MySQL/PG)
[Op.iRegexp]: '^[h|a|t]' // ~* '^[h|a|t]' (僅限 PG)
[Op.notIRegexp]: '^[h|a|t]' // !~* '^[h|a|t]' (僅限 PG)
[Op.like]: { [Op.any]: ['cat', 'hat']} // 包含任何數(shù)組['cat', 'hat'] - 同樣適用于 iLike 和 notLike
[Op.overlap]: [1, 2] // && [1, 2] (PG數(shù)組重疊運(yùn)算符)
[Op.contains]: [1, 2] // @> [1, 2] (PG數(shù)組包含運(yùn)算符)
[Op.contained]: [1, 2] // <@ [1, 2] (PG數(shù)組包含于運(yùn)算符)
[Op.any]: [2,3] // 任何數(shù)組[2, 3]::INTEGER (僅限PG)
[Op.col]: 'user.organization_id' // = 'user'.'organization_id', 使用數(shù)據(jù)庫語言特定的列標(biāo)識符,
總結(jié):
每天累計一點新知識,下一個大神就是你~