Sequelize模糊查询

Posted xiangsj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sequelize模糊查询相关的知识,希望对你有一定的参考价值。

 

const Sequelize = require(sequelize);
const Op = Sequelize.Op;

User.findAll({
 raw: true,
  order: [
      [name, DESC]
  ],  // 排序
  where: {
    // name: ‘cheny‘, // 精确查询
    mobile_no: {
      // 模糊查询
      [Op.like]:% +mobile_no + %
    }
  },
  attributes:[id,name], // 控制查询字段
})

 

 

 

.

以上是关于Sequelize模糊查询的主要内容,如果未能解决你的问题,请参考以下文章

mybatis模糊查询

Node.js学习13~基于node-sequelize的查询器,附代码举例

同步执行 Sequelize 查询

Sequelize查询执行顺序错误

Sequelize - 在 where 子句中查询其他表

在 Sequelize 中一次查询两个组合字段