Where

无论你是通过 findAll/find 或批量 updates/destroys 进行查询,都可以传递一个 where 对象来过滤查询.

where 通常用 attribute:value 键值对获取一个对象,其中 value 可以是匹配等式的数据或其他运算符的键值对象.

也可以通过嵌套 orand 运算符 的集合来生成复杂的 AND/OR 条件.

基础

  1. const Op = Sequelize.Op;
  2. Post.findAll({
  3. where: {
  4. authorId: 2
  5. }
  6. });
  7. // SELECT * FROM post WHERE authorId = 2
  8. Post.findAll({
  9. where: {
  10. authorId: 12,
  11. status: 'active'
  12. }
  13. });
  14. // SELECT * FROM post WHERE authorId = 12 AND status = 'active';
  15. Post.findAll({
  16. where: {
  17. [Op.or]: [{authorId: 12}, {authorId: 13}]
  18. }
  19. });
  20. // SELECT * FROM post WHERE authorId = 12 OR authorId = 13;
  21. Post.findAll({
  22. where: {
  23. authorId: {
  24. [Op.or]: [12, 13]
  25. }
  26. }
  27. });
  28. // SELECT * FROM post WHERE authorId = 12 OR authorId = 13;
  29. Post.destroy({
  30. where: {
  31. status: 'inactive'
  32. }
  33. });
  34. // DELETE FROM post WHERE status = 'inactive';
  35. Post.update({
  36. updatedAt: null,
  37. }, {
  38. where: {
  39. deletedAt: {
  40. [Op.ne]: null
  41. }
  42. }
  43. });
  44. // UPDATE post SET updatedAt = null WHERE deletedAt NOT NULL;
  45. Post.findAll({
  46. where: sequelize.where(sequelize.fn('char_length', sequelize.col('status')), 6)
  47. });
  48. // SELECT * FROM post WHERE char_length(status) = 6;

操作符

Sequelize 可用于创建更复杂比较的符号运算符 -

  1. const Op = Sequelize.Op
  2. [Op.and]: [{a: 5}, {b: 6}] // (a = 5) 且 (b = 6)
  3. [Op.or]: [{a: 5}, {a: 6}] // (a = 5 或 a = 6)
  4. [Op.gt]: 6, // id > 6
  5. [Op.gte]: 6, // id >= 6
  6. [Op.lt]: 10, // id < 10
  7. [Op.lte]: 10, // id <= 10
  8. [Op.ne]: 20, // id != 20
  9. [Op.eq]: 3, // = 3
  10. [Op.is]: null // 为 NULL
  11. [Op.not]: true, // 不是 TRUE
  12. [Op.between]: [6, 10], // 在 6 和 10 之间
  13. [Op.notBetween]: [11, 15], // 不在 11 和 15 之间
  14. [Op.in]: [1, 2], // 在 [1, 2] 之中
  15. [Op.notIn]: [1, 2], // 不在 [1, 2] 之中
  16. [Op.like]: '%hat', // 包含 '%hat'
  17. [Op.notLike]: '%hat' // 不包含 '%hat'
  18. [Op.iLike]: '%hat' // 包含 '%hat' (不区分大小写) (仅限 PG)
  19. [Op.notILike]: '%hat' // 不包含 '%hat' (仅限 PG)
  20. [Op.startsWith]: 'hat' // 类似 'hat%'
  21. [Op.endsWith]: 'hat' // 类似 '%hat'
  22. [Op.substring]: 'hat' // 类似 '%hat%'
  23. [Op.regexp]: '^[h|a|t]' // 匹配正则表达式/~ '^[h|a|t]' (仅限 MySQL/PG)
  24. [Op.notRegexp]: '^[h|a|t]' // 不匹配正则表达式/!~ '^[h|a|t]' (仅限 MySQL/PG)
  25. [Op.iRegexp]: '^[h|a|t]' // ~* '^[h|a|t]' (仅限 PG)
  26. [Op.notIRegexp]: '^[h|a|t]' // !~* '^[h|a|t]' (仅限 PG)
  27. [Op.like]: { [Op.any]: ['cat', 'hat']} // 包含任何数组['cat', 'hat'] - 同样适用于 iLike 和 notLike
  28. [Op.overlap]: [1, 2] // && [1, 2] (PG数组重叠运算符)
  29. [Op.contains]: [1, 2] // @> [1, 2] (PG数组包含运算符)
  30. [Op.contained]: [1, 2] // <@ [1, 2] (PG数组包含于运算符)
  31. [Op.any]: [2,3] // 任何数组[2, 3]::INTEGER (仅限PG)
  32. [Op.col]: 'user.organization_id' // = 'user'.'organization_id', 使用数据库语言特定的列标识符, 本例使用 PG
  33. [Op.gt]: { [Op.all]: literal('SELECT 1') } // > ALL (SELECT 1)

范围选项

所有操作符都支持范围类型查询.

请记住,提供的范围值也可以定义绑定的 inclusion/exclusion.

  1. // 所有上述相等和不相等的操作符加上以下内容:
  2. [Op.contains]: 2 // @> '2'::integer (PG range contains element operator)
  3. [Op.contains]: [1, 2] // @> [1, 2) (PG range contains range operator)
  4. [Op.contained]: [1, 2] // <@ [1, 2) (PG range is contained by operator)
  5. [Op.overlap]: [1, 2] // && [1, 2) (PG range overlap (have points in common) operator)
  6. [Op.adjacent]: [1, 2] // -|- [1, 2) (PG range is adjacent to operator)
  7. [Op.strictLeft]: [1, 2] // << [1, 2) (PG range strictly left of operator)
  8. [Op.strictRight]: [1, 2] // >> [1, 2) (PG range strictly right of operator)
  9. [Op.noExtendRight]: [1, 2] // &< [1, 2) (PG range does not extend to the right of operator)
  10. [Op.noExtendLeft]: [1, 2] // &> [1, 2) (PG range does not extend to the left of operator)

组合

  1. {
  2. rank: {
  3. [Op.or]: {
  4. [Op.lt]: 1000,
  5. [Op.eq]: null
  6. }
  7. }
  8. }
  9. // rank < 1000 OR rank IS NULL
  10. {
  11. createdAt: {
  12. [Op.lt]: new Date(),
  13. [Op.gt]: new Date(new Date() - 24 * 60 * 60 * 1000)
  14. }
  15. }
  16. // createdAt < [timestamp] AND createdAt > [timestamp]
  17. {
  18. [Op.or]: [
  19. {
  20. title: {
  21. [Op.like]: 'Boat%'
  22. }
  23. },
  24. {
  25. description: {
  26. [Op.like]: '%boat%'
  27. }
  28. }
  29. ]
  30. }
  31. // title LIKE 'Boat%' OR description LIKE '%boat%'

运算符别名

Sequelize 允许将特定字符串设置为操作符的别名.使用v5,将为你提供弃用警告.

  1. const Op = Sequelize.Op;
  2. const operatorsAliases = {
  3. $gt: Op.gt
  4. }
  5. const connection = new Sequelize(db, user, pass, { operatorsAliases })
  6. [Op.gt]: 6 // > 6
  7. $gt: 6 // 等同于使用 Op.gt (> 6)

运算符安全性

默认情况下,Sequelize 将使用 Symbol 运算符. 使用没有任何别名的 Sequelize 可以提高安全性.没有任何字符串别名将使得运算符可能被注入的可能性降到极低,但你应该始终正确验证和清理用户输入.

一些框架会自动将用户输入解析为js对象,如果你无法清理输入,则可能会将带有字符串运算符的 Object 注入Sequelize.

为了更好的安全性,强烈建议在代码中使用 Sequelize.Op 中的符号运算符,如Op.and / Op.or,而不依赖于任何基于字符串的运算符,如 $and / $or. 你可以通过设置 operatorsAliases 参数来限制应用程序所需的别名,记住清理用户输入,特别是当你直接将它们传递给 Sequelize 方法时.

  1. const Op = Sequelize.Op;
  2. // 不用任何操作符别名使用 sequelize
  3. const connection = new Sequelize(db, user, pass, { operatorsAliases: false });
  4. // 只用 $and => Op.and 操作符别名使用 sequelize
  5. const connection2 = new Sequelize(db, user, pass, { operatorsAliases: { $and: Op.and } });

如果你使用默认别名并且不限制它们,Sequelize会发出警告.如果你想继续使用所有默认别名(不包括旧版别名)而不发出警告,你可以传递以下运算符参数 -

  1. const Op = Sequelize.Op;
  2. const operatorsAliases = {
  3. $eq: Op.eq,
  4. $ne: Op.ne,
  5. $gte: Op.gte,
  6. $gt: Op.gt,
  7. $lte: Op.lte,
  8. $lt: Op.lt,
  9. $not: Op.not,
  10. $in: Op.in,
  11. $notIn: Op.notIn,
  12. $is: Op.is,
  13. $like: Op.like,
  14. $notLike: Op.notLike,
  15. $iLike: Op.iLike,
  16. $notILike: Op.notILike,
  17. $regexp: Op.regexp,
  18. $notRegexp: Op.notRegexp,
  19. $iRegexp: Op.iRegexp,
  20. $notIRegexp: Op.notIRegexp,
  21. $between: Op.between,
  22. $notBetween: Op.notBetween,
  23. $overlap: Op.overlap,
  24. $contains: Op.contains,
  25. $contained: Op.contained,
  26. $adjacent: Op.adjacent,
  27. $strictLeft: Op.strictLeft,
  28. $strictRight: Op.strictRight,
  29. $noExtendRight: Op.noExtendRight,
  30. $noExtendLeft: Op.noExtendLeft,
  31. $and: Op.and,
  32. $or: Op.or,
  33. $any: Op.any,
  34. $all: Op.all,
  35. $values: Op.values,
  36. $col: Op.col
  37. };
  38. const connection = new Sequelize(db, user, pass, { operatorsAliases });

JSON

JSON 数据类型仅由 PostgreSQL,SQLite, MySQL 和 MariaDB 语言支持.

PostgreSQL

PostgreSQL 中的 JSON 数据类型将值存储为纯文本,而不是二进制表示. 如果你只是想存储和检索 JSON 格式数据,那么使用 JSON 将占用更少的磁盘空间,并且从其输入数据中构建时间更少. 但是,如果你想对 JSON 值执行任何操作,则应该使用下面描述的 JSONB 数据类型.

MSSQL

MSSQL 没有 JSON 数据类型,但是它确实提供了对于自 SQL Server 2016 以来通过某些函数存储为字符串的 JSON 的支持.使用这些函数,你将能够查询存储在字符串中的 JSON,但是任何返回的值将需要分别进行解析.

  1. // ISJSON - 测试一个字符串是否包含有效的 JSON
  2. User.findAll({
  3. where: sequelize.where(sequelize.fn('ISJSON', sequelize.col('userDetails')), 1)
  4. })
  5. // JSON_VALUE - 从 JSON 字符串提取标量值
  6. User.findAll({
  7. attributes: [[ sequelize.fn('JSON_VALUE', sequelize.col('userDetails'), '$.address.Line1'), 'address line 1']]
  8. })
  9. // JSON_VALUE - 从 JSON 字符串中查询标量值
  10. User.findAll({
  11. where: sequelize.where(sequelize.fn('JSON_VALUE', sequelize.col('userDetails'), '$.address.Line1'), '14, Foo Street')
  12. })
  13. // JSON_QUERY - 提取一个对象或数组
  14. User.findAll({
  15. attributes: [[ sequelize.fn('JSON_QUERY', sequelize.col('userDetails'), '$.address'), 'full address']]
  16. })

JSONB

JSONB 可以以三种不同的方式进行查询.

嵌套对象

  1. {
  2. meta: {
  3. video: {
  4. url: {
  5. [Op.ne]: null
  6. }
  7. }
  8. }
  9. }

嵌套键

  1. {
  2. "meta.audio.length": {
  3. [Op.gt]: 20
  4. }
  5. }

外包裹

  1. {
  2. "meta": {
  3. [Op.contains]: {
  4. site: {
  5. url: 'http://google.com'
  6. }
  7. }
  8. }
  9. }

关系 / 关联

  1. // 找到所有具有至少一个 task 的 project,其中 task.state === project.state
  2. Project.findAll({
  3. include: [{
  4. model: Task,
  5. where: { state: Sequelize.col('project.state') }
  6. }]
  7. })