[email protected]入门一

安装MongoDB自行搜索, 我这里提供GUI版本类似navicat.

1. 数据库层面

show dbs #查看服务器上的数据库  [local  0.000GB]

use test  #切换到指定数据库  如果数据库中不存在test,将会创建test数据库

db    #查看当前数据库  [test]

db.dropDatabase()  #删除当前使用的数据库 [{ "dropped" : "test", "ok" : 1 }]
 
2.集合层面
db.createCollection("book")  #新建一个名叫book的collection

show collections  #查看当前数据库中的所有集合

db.book.drop()   #删除名叫book的collection

db.book.renameCollection(“book2”)   #将book 重命名为book2

db.book.ensureIndex({ID:1})   #在book集合上,建立对ID字段的索引, 1代表升序
db.book.getIndexes()      #获取book集合上的索引
db.book.dropIndex({ID:1})    #删除book集合上的索引
 
=============db.collection.update(criteria, objNew, upsert, multi)======
update()参数说明:
criteria: update的查询条件 相当于sql update里的where条件子句
objNew:  update的对象和一些更新操作, 可以理解为set column=‘value‘
upsert: 如果不存在update的记录, 是否插入objNew true为插入, false不插入
multi: mongodb默认false, 只更新找到的第一条记录, 如果这个参数为true,就把按条件查出来多条记录全部更新
========================================================================
 
db.book.update({},{$rename:{"bookname":"bookname2"}},false,true)   #将book集合中的所有记录的bookname字段的名字修改为bookname2
db.book.update({},{$set:{"price","50"}},false,true)   #为book集合的每一条记录添加一个字段,并赋值为50
db.book.update({},{"$unset":{"price":1}},false,true)    #删除集合中的所有记录的price字段
 
db.book.insert({"bookname":"算法导论","price":"80"})    #向book集合中插入两条记录
db.book.save({"bookename":"数据结构","price":"90"})     #和insert一样也能插入一条记录
db.book.find()      #查询出book集合中所有的记录数
 
 
 
 
 
 
 
 
 
 
时间: 2024-10-31 09:31:40

[email protected]入门一的相关文章

[email protected] 开源中国git与sourceTree联合使用教程

[摘要:[email protected] 做为一其中国版的github,显着有着他本身的上风,比方速率快,汉语表现.sourcetree也可称得上是一个没有错的git客户端,可以或许 支撑windows战mac os.本文便为那二者团结用去治理项目] [email protected] 作为一个中国版的github,明显有着他自己的优势,比如速度快,汉语显示.sourcetree也可称得上是一个不错的git客户端,能够支持windows和mac os.本文就为这两者联合用来管理项目做一个入门的

$*和[email protected]之间区别代码分析

#!/bin/bash set 'apple pie' pears peaches for i in $*           /*单引号被去掉,循环单个字符输出*/ do echo $i done [[email protected] Ex_14.02-14.31]# sh 14-14-1 apple pie pears peaches -------------------------------------------------------------- #!/bin/bash set

[email protected]一个高效的配置管理工具--Ansible configure management--翻译(六)

无书面许可请勿转载 高级playbook Finding files with variables All modules can take variables as part of their arguments by dereferencing them with {{ and }} . You can use this to load a particular file based on a variable. For example, you might want to select a

【转载】 ERROR 1045 (28000): Access denied for user [email protected] (using password: NO)

来自:http://www.jb51.net/LINUXjishu/10981.html 错误描述: Mysql中添加用户之后可能出现登录时提示ERROR 1045 (28000): Access denied for user的错误.删除user.user中值为NULL的,或更新NULL为test 1)delete from user where user is NULL 2)update user set user='test' where user is NULL.意外的情况: 如果上述方

[[email protected]] Omit catch error block if not needed

From [email protected], you can omit catch error block. Before: try { throw new Error('whatever'); } catch(err) { console.log(err) } Now: try { throw new Error('whatever'); } catch { console.log("error happened") } It is just a syntax sugar, if

[email protected]动态代理-类加载器

一.测试单元     概述:用于测试JAVA代码的工具类,已内置在Eclipse中;     格式:         1.在方法的上面添加@Test;         2.对被测试的方法的要求:权限-public;返回值-void;参数-空参         [email protected]:在@Test标注的方法前执行,可以用于初始化;           @After:在@Test标注的方法后执行,可以用于释放资源; 二.注解     概述:java的一种数据类型,和类/接口在同一级别  

git push报错error: failed to push some refs to '[email protected]:

$ git push -u origin master To [email protected]:xxx/xxx.git ! [rejected] master -> master (fetch first) error: failed to push some refs to '[email protected]:xxx/xxx.git' hint: Updates were rejected because the remote contains work that you do hint:

Https方式使用[email protected]设置密码的方式

62561_silentboy Zoker3 years ago member https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速 设置记住密码(默认15分钟): git config --global credential.helper cache 如果想自己设置时间,可以这样做: git config credential.helper 'cache --timeout=3600' 这样就设置一个小时之后失效 长期存储密码: git

mysql Access denied for user [email protected]错误解决方法总结(转)

mysql Access denied for user [email protected]错误解决方法总结(转) mysql Access denied for user \'root\'@\'localhost\'”解决办法总结,下面我们对常见的出现的一些错误代码进行分析并给出解决办法,有需要的朋友可参考一下. 错误代码 1045 Access denied for user 'root'@'localhost' (using password:YES) 解决办法是重新设置root用户密码,