「MongoDB入門」find()でデータを検索するサンプル

1.等価比較
db.employees.find(
{position: “SE"}
)
2.非等価比較
db.employees.find(
{position: { $ne: “PG" }}
)

3.複数検索条件を指定する
db.employees.find(
{position: “PG", age: 22}
)

4.OR条件
db.employees.find(
{$or: [{position: “PG"} , {age: 30}]}
)

DataBase

Posted by arkgame