2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sequelizeのwhere句でbetweenを使う方法

Posted at

#環境
Node,js + Express + MariaDB
Sequelize V5
#若干ハマった
Sequelizeにおいて、オペレータの使用方法は、バージョンによって差異があるようです。
前は、($文字列)のエイリアスを設定することで、オペレータを使用していましたが
V5では非推奨となっていて
現在はSequelize.Opから提供されるSymbolオペレータを使用することが推奨されているようです。

const Sequelize = require("sequelize")
const Op = Sequelize.Op
router.get("/user",(req,res,next)=>
  {
    models.user.findAll(
    {
      where:{birth:{[Op.between]:["2019-09-09","2019-09-10"]}}
    })
  }
)

#悲しみ
適当に検索してたら、文字列オペレータを使った方法がかなり出てきて戸惑いました。
リファレンス最強ですね。

Sequelizeリファレンス : https://sequelize.org/master/manual/querying.html

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?