标签:关系 tab 文档 collect find cti blog log documents
mongodb层级关系:
databases-collection-documents
简单的CRUD:
db.collection.find()#
#查找集合中所有文档 db.collection.find() #查找一条数据 db.collection.findOne() #插入一条数据 db.collection.insert({age:18}) #更新一条数据 db.collection.update({age:18},{$set:{property:"young"}}) #移除集合中的所有数据 db.collection.remove() #移除指定条件的数据 db.collection.remove({age:18})
标签:关系 tab 文档 collect find cti blog log documents
原文地址:http://www.cnblogs.com/whiteprism/p/6184562.html