摘要:
查询语句 环境准备: > use mydbswitched to db mydb> db.createCollection('user'){ "ok" : 1 }> > > db.user.insert({name:'niuh',age:11})> db.user.insert({name:'kk' 阅读全文
posted @ 2017-04-07 18:13
hylinux
阅读(142)
评论(0)
推荐(0)
摘要:
MongoDB 简介 简介 MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。它支持的数据结构非常松散,是类似 json 的 bson 格式,因此可以存储比较复杂的数据类型。 面向集合的存储 在 MongoDB 中,一个数据库包含多个集合, 阅读全文
posted @ 2017-04-07 17:46
hylinux
阅读(269)
评论(0)
推荐(0)