1.mongodb的安装
我之前写过一篇博客,大家可以看下。
2.mongodb的命令
1.启动mongodb常用命令如下:
- 打开数据库 sudo mongod
- 切换/创建数据库 use yourDB
- 查看数据库 show dbs
- 当前数据库 db
- 查看 库里边有多少集合 show tables;show collections;
- 在当前数据库 插入json对象 db.c1.insert({name:"user1"});
- 再查看集合 就会看到c1 被自动创建 show tables;show collections;
- 查看 db.c1.find();
2.mongodb支持的数据类型:
1 null {”one“:null}
2 bull {"one":true}
3 32位整数
4 64位整数
5 64位浮点数
6 字符串
7 符号
8 objectId
9 日期
10 正则表达式
11 代码 {"one":function(){}}
12 数组 {"x":["a","b",["c","d"]]}
13 内嵌文档 {"x":{"name":"Tom","age":20}}