先谈增改删
模型定义
var Task = sequelize.define( 'task', {
title: Sequelize.STRING,
rank: { type: Sequelize.STRING, defaultValue: 3 }
} );
Create
// 创建数据库中对象
Task.create( { title: 'foo' } );
// 创建临时变量
var task = Task.build( { title: 'very important task' } );
// 将临时变量存入数据库内, 只保存 title 属性
task.save( { fields: [ 'title' ] } );
Update
// 在数据库中更新 task 的 title
task.update( { title: 'a very different title now' } );
// 更新 排名小于1000或者无排名的 post 的 updateAt 为 null
Post.update( {
updatedAt: null,
}, {
where: {
rank: {
$or: {
$lt: 100,
$eq: null
}
}
}
//// rank < 1000 OR rank IS NULL
} );
Delete
// 删除 不活跃的 post
Post.destroy( {
where: {
status: 'inactive'
}
} );
Retrieve
// 只选择相应属性
Model.findAll( {
attributes: [ 'foo', 'bar' ]
} );
// 做聚类
Model.findAll( {
attributes: { include: [ [ sequelize.fn( 'COUNT', sequelize.col( 'hats' ) ), 'no_hats' ] ] }
} );
// 除开某些属性
Model.findAll( {
attributes: { exclude: [ 'baz' ] }
} );
// id 查找
Project.findById( 123 ).then();
// 属性查找
Project.findOne( { where: { title: 'aProject' } } ).then();
// ?
Project.findOne( { where: { title: 'aProject' }, attributes: [ 'id', [ 'name', 'title' ] ] } ).then();
// 找,无则创建, created 为 boolean
User.findOrCreate( { where: { username: 'kayor' } } ).spread( function ( user, created ) {} );
// 找并且计数 count 为计数, rows 为对象数组
Project.findAndCountAll( {
where: { title: { $like: 'foo%' } },
offset: 10,
limit: 2
} ).then( function ( result ) {
console.log( result.count );
console.log( result.rows );
} );
// 找出拥有 active profile 的用户
User.findAndCountAll( {
include: [
{ model: Profile, where: { active: true } }
],
limit: 3
} );
Project.findAll();
Project.all();
Project.findAll( { where: { name: "a Project" } } );
Project.findAll( { where: [ "id>?", 25 ] } );
Project.findAll( { where: { id: [ 1, 2, 3 ] } } );
Project.findAll( {
where: {
id: {
$and: { a: 5 },
$or: [ { a: 5 }, { a: 6 } ],
$gt: 6,
$gte: 6,
$lt: 10,
$lte: 10,
$ne: 20,
$between: [ 6, 10 ],
$notBetween: [ 6, 10 ],
$in: [ 1, 2 ],
$notIn: [ 1, 2 ],
$like: '%hat'
},
status: { $not: false }
}
} );
//只找十个
Project.findAll( { limit: 10 } );
// 跳过前10个
Project.findAll( { offset: 10 } );
// 跳过前10,取两个
Project.findAll( { offset: 10, limit: 2 } );
// 递减
Project.findAll( { order: 'title DESC' } );
// 分组
Project.findAll( { group: 'name' } );
// 计数
Project.count( { where: [ "id>?", 25 ] } );
// 找最大
Project.max( 'age' );
// 内连接找到拥有符合条件工具的用户
Post.findAll( {
include: [ {
model: Comment,
as: 'comment_my',
where: { name: { $like: '%ooth%' } }
} ]
} );
// 获得原数据
Post.findOne( { where: { title: 'scut' } } ).then( function ( post ) {
post.title = 'south china university of tecknology';
console.log( post.title ); // 'south china university of tecknology'
post.reload().then( function () {
console.log( post.title ); // 'scut'
} );
} );
网友评论