> use coltest(建立資料庫若該資料庫不存在,若該資料庫存在,則使用該資料庫)
switched to db coltest
> show collections(展示該資料庫下所有的集合)
> db.createcollection("test");(建立名為test的集合)
> show collections
test
> db.test.insert();()
> db.test.insert();(向集合中插入資料)
writeresult()
> db.test.find();(查詢test集合下面的所有資料)
> db.test.insert();
writeresult()
> db.test.insert();
2017-07-25t21:04:01.169+0800 e query [thread1] syntaxerror: missing : after property id @(shell):1:43
> db.test.find();
> db.test.insert();
writeresult()
> db.test.find();
> db.test.find();(帶有條件的查詢)
> db.test.remove();(帶有條件的刪除)
writeresult()
> db.test.find();
> db.test.find().limit(1);(從集合中抽取多少條資料)
> db.test.find();
> db.test.update(,)(更新資料)
writeresult()
> db.test.find();
基本操作,便於記住(哈哈)
mongdb基本操作
參考 新增乙個 useradminanydatabase 使用者,這是乙個能夠管理所有使用者的的使用者,類似於超級管理員吧 use admin 進入admin表 db.createuser 檢視使用者是否建立成功 show users 輸出以下內容表示新增成功 切換到要新增使用者的資料庫中 use ...
mongDB 基本查詢操作
最近一直在用mongodb,有時候會需要用到統計,在網上查了一些資料,最適合用的就是用aggregate,以下介紹一下自己運用的心得。pro ject 包含 排除 重 命名和顯 示欄位 pro ject 包含 排除 重 命名和顯 示字 段match 查詢,需要同find 一樣的引數 li mit 限...
mongdb資料庫基本操作
插入一條db物件 public static void adddbobject dbcollection collection,basicdbobject object 根據id查詢dbobject public static dbobject getdbobjectbyid string valu...