MongoDB 常用指令

2021-09-19 14:10:02 字數 1214 閱讀 7351

mongodb 常用基礎指令 備忘錄。

$ ./mongod --dbpath
第一種是linux指令

$ killall mongod

$ kill 10014(sigterm)

第二種是進入mongo資料庫( 推薦 )

>use admin

switched to db admin

>db.shutdownserver();

server should be down ...

> post = ;

> use mydb;

> db.mydb.insert(post);

> db.mydb.findone(,) // 查詢乙個

> db.mydb.find(,) //查詢

查詢條件

> db.user.find() 

> db.user.find(});

查詢18~30(含)去掉e就是不含

"$ne"不等於,查詢username不為joe的集合。

"$in":[123,222.555] 多個值

"$or":[,]

"$not" 可以用在任何其他條件之上

查詢排序

> db.c.find().limit(50).skip(3).sort()
limit上限50個跳過前3個排序按照username公升序 age 降序

文件替換

> db.users.update(, )
使用修改器

> db.users.update(,)
部分更新使用修改器

$set:}; //設定使用者名為小明

$inc:}; //年齡加100歲

$push:陣列新增字段

> db.users.remove() //刪除某個集合

> db.users.drop() //刪除整個文件

mongoDB常用操作指令

簡單操作 插入資料 db.student.insert db.student.insert db.student.find db.student.find db.student.find db.student.findone db.student.find count db.student.find...

mongodb資料庫常用指令

詳細安裝看我文章 開啟在bin目錄下mongo.exe來運算元據庫 常用命令 show dbs 檢視所有庫 use blog 使用指定的庫 show collections 檢視所有的文件 db.表名.find 查詢指定文件的資料 db.表名.insert 插入資料 3.將mongodb服務加入到w...

MongoDB筆記(二)常用操作指令

資料庫 database 集合 collection 文件 document db.collectionname.insert docobject db.collectionname.insert docobject 或者更加明確的語義 db.collectionname.insertone doc...