Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 395 Bytes

查询.md

File metadata and controls

16 lines (13 loc) · 395 Bytes
  • $exists 找到某个字段不为空的
 { field: { $exists: <boolean> } }
  • 根据字段排序
.sort( { "borough": 1 } )
  • $lt
  • 选择 数量少于20 个的所有文档
db.inventory.find( { quantity: { $lt: 20 } } )