时间:2021-07-01 10:21:17 帮助过:27人阅读
1:增 方式一:插入文档数据时候,如果集合不存在会自动创建 db.集合名称.insert({"key":"Value"}) 方式二:创建文档 db.createCollection(name,options) 2: 删 db.集合名称.drop() 3:查 show collections show tables集合(表)的增删查
options 中的参数
capped:是否创建固定集合,如果是,需要设置Size大小。一旦数据超过这个大小后,会自动覆盖历史数据。
autoIndexId:自动在id字段创建索引
size:为固定集合指定一个最大值
max:集合中包含文档最大数
示例:db.createCollection("Student",{capped:true,autoIndexId:true,size:1024000,max:1000})
1:增 方式一:直接新增一个文档 db.集合名.insert({"key":value}) 方式二:先定义一个文档,再插入 document( {"key":value} ) db.集合名.insert(document) 2:删 db.集合名.remove( {条件}, { justOne:是否只删除第一条 } ) 一键毁所有 db.集合名.remove(} 3:改 db.集合名.update( {条件:类似where}, {$set:{字段}}, { upsert:update+insert如果不存在,则插入,默认false,不插入 multi:默认false,只更新第一条。如果为true,全部更新 writeConcern: } ) db.集合名.save( {文档}, { writeConcern: } ) 4:查 db.集合名.find({条件}) db.集合名.findOne({条件})文档 增删改查
1:条件查询 等于 {"key":"Value"} where key = ‘Value‘ 不等于(noequal) {"key":{$ne:Value}} where key != Value 大于(greater than) {"key":{$gt:Value}} where key > Value 大于等于(greater than equal) {"key":{$gte:Value}} where key >= Value 小于(less than) {"key":{$lt:Value}} where key < Value 小于等于(less than equal) {"key":{$lte:Value}} where key <= Value 2:模糊查询 包含 {"key":/Value/} where key like ‘%Value%‘ 开头 {"key":/^Value/} where key like ‘Value%‘ 结尾 {"key":/Value$/} where key like ‘^Value‘条件查询
集腋成裘-14-MongoDB系列-01初识MongoDB
标签:a10 名称 方式 大小 更新 数据 tps 需要 nload