2022-01-07 架构►存储►mongodb mongodb query 进入交互界面 1$ mongo 查询 12345678910111213141516171819# 查看数据库> show dbs;local 0.000GBtest 0.000GB# 进入数据库> use test;# 查看集合> show collections; # 或者 show tables;# 查询集合> db.test.findOne()# 统计数量> db.test.count({...})# 指定字段db.user.find({"status": 1, "updated": {"$gt" : 1672831786 }}, {updated: 1}) 和关系型数据库对应,collections - table,doc - row。 类型查询 可用类型查看这里。 12> db.test.findOne({id: {$type: 'int'}})> db.test.findOne({id: {$not: {$type: 'int'}}}) Newer lldb Older mongo tools