MongoDB
1 安装:https://blog.csdn.net/CC_leather/article/details/105051719#_6
2 使用:
show dbs # 显示所有数据的列表 db # 显示当前数据库对象或集合 use admin # 连接到一个指定admin的数据库。
3 数据库名字
不能是空字符串("")。 不得含有‘ ‘(空格)、.、$、/、\和\0 (空字符)。 应全部小写。 最多64字节。
有一些数据库名是保留的,可以直接访问这些有特殊作用的数据库,admin/ local /config
4 MongoDB shell 来连接 Mongodb 服务
标准 URI 连接语法: mongodb://[username:]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
创建数据库
use test
如果test 不存在则创建test,如果存在则切换到runoob
show dbs
没有test,要显示它,我们需要向 test 数据库插入一些数据。
插入数据
db.test.instert({name: ‘xm‘})
删除数据库
db.dropDatabase()
相关推荐
lbyd0 2020-11-17
BigYellow 2020-11-16
sushuanglei 2020-11-12
我心似明月 2020-11-09
sdmzhu 2020-09-01
zhushenghan 2020-11-09
sunnnyduan 2020-10-16
不要皱眉 2020-10-14
xiaohai 2020-09-29
songxiugongwang 2020-09-22
萌亖 2020-09-17
LuckyLXG 2020-09-08
mkhhxxttxs 2020-09-16
xiaohai 2020-09-16
newcome 2020-09-09
jaylong 2020-08-19
大秦铁骑 2020-08-19
thatway 2020-08-19