MongoDB的一些CURD操作
时间:2021-07-01 10:21:17
帮助过:18人阅读
use 数据库名称
use db_name
#查看当前数据库下,有哪些集合(表):
show tables
或者
show collections
#创建一个集合,(直接插入一个文档)
db.集合名称.insert({a:
1})
#更新文档
db.集合名称.update(query,
update,
option)
#删除文档
db.集合名称.remove(query, justone)
#查询文档
db.集合名称.find(query, projection)
#创建索引
db.集合名称.createIndex(keys, options)
#删除当前数据库
db.dropDatabase()
#删除表
db.集合名称.drop()
#排序
sort
#查询时跳过和limit
skip limit
#常用聚合
count、
group、aggregate、mapReduce 等等
创建或一个数据库,
MongoDB的一些CURD操作
标签:mon code move weight manual pre 命令操作 font date