0
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.

MongoDB入門してみた(3)ソート

0
Posted at

自分用備忘録

目的

MongoDBの検索結果をソートする方法を整理する。

sort()コマンド

ソードコマンド
カーソル.sort(ソート条件)
ソート条件の記法
{
    ソートに使うキー1: 1 or -1,
    ソートに使うキー2: 1 or -1,
    ...
    ソートに使うキーn: 1 or -1
}

1を指定すると昇順ソート、-1を指定すると降順ソート
skip()とlimit()を指定することも可能。

0
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
0
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?