赞
踩
show dbs
use 库名
db
use 库名 ---切换到要删除的数据库
db.dropDatabase()
db.createCollection('name') --- 集合名一定要加引号
show collections
db.集合名.drop()
db.集合名.renameCollection('newName')
db.集合名.insert({ 要添加的数据 })
db.集合名.find({查询条件})
db.集合名.update(查询条件,新的数据)
db.集合名.update({id:xx},{$set:{name: xxx}})
db.集合名.remove({查询条件})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。