国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

關(guān)于mongodb數(shù)據(jù)庫(kù)的增刪改查

wums / 2849人閱讀

摘要:查看所有數(shù)據(jù)庫(kù)列表使用數(shù)據(jù)庫(kù)創(chuàng)建數(shù)據(jù)庫(kù)如果真的想把這個(gè)數(shù)據(jù)庫(kù)創(chuàng)建成功,那么必須插入一個(gè)數(shù)據(jù)。數(shù)據(jù)庫(kù)中不能直接插入數(shù)據(jù),只能往集合中插入數(shù)據(jù)。

查看所有數(shù)據(jù)庫(kù)列表
show dbs

使用數(shù)據(jù)庫(kù)、創(chuàng)建數(shù)據(jù)庫(kù)
use student

如果真的想把這個(gè)數(shù)據(jù)庫(kù)創(chuàng)建成功,那么必須插入一個(gè)數(shù)據(jù)。

數(shù)據(jù)庫(kù)中不能直接插入數(shù)據(jù),只能往集合(collections)中插入數(shù)據(jù)。不需要專門創(chuàng)建集合,只 需要寫點(diǎn)語(yǔ)法插入數(shù)據(jù)就會(huì)創(chuàng)建集合:
db.student.insert({“name”:”xiaoming”});

db.student 系統(tǒng)發(fā)現(xiàn) student 是一個(gè)陌生的集合名字,所以就自動(dòng)創(chuàng)建了集合。 顯示當(dāng)前的數(shù)據(jù)集合(mysql 中叫表)
show collections

刪除數(shù)據(jù)庫(kù),刪除當(dāng)前所在的數(shù)據(jù)庫(kù)

db.dropDatabase();

刪除集合
db.COLLECTION_NAME.drop()
db.user.drop()

db.表名.insert({"name":"zhangsan"}); student 集合名稱(表)

查詢

1、查詢所有記錄 db.userInfo.find();
相當(dāng)于:
select* from userInfo;

2、查詢?nèi)サ艉蟮漠?dāng)前聚集集合中的某列的重復(fù)數(shù)據(jù)
db.userInfo.distinct("name");
會(huì)過濾掉 name 中的相同數(shù)據(jù)
相當(dāng)于:select distict name from userInfo;

3、查詢 age = 22 的記錄
db.userInfo.find({"age": 22});
相當(dāng)于:select * from userInfo where age = 22;

4、查詢 age > 22 的記錄
db.userInfo.find({age: {$gt: 22}});
相當(dāng)于:select * from userInfo where age >22;

5、查詢 age < 22 的記錄
db.userInfo.find({age: {$lt: 22}});
相當(dāng)于:select * from userInfo where age <22;

6、查詢 age >= 25 的記錄
db.userInfo.find({age: {$gte: 25}});
相當(dāng)于:select * from userInfo where age >= 25;

7、查詢 age <= 25 的記錄
db.userInfo.find({age: {$lte: 25}});

8、查詢 age >= 23 并且 age <= 26 注意書寫格式
db.userInfo.find({age: {$gte: 23, $lte: 26}});

9、查詢 name 中包含 mongo 的數(shù)據(jù) 模糊查詢用于搜索
db.userInfo.find({name: /mongo/});
相當(dāng)于: select * from userInfo where name like ‘%mongo%’;

11、查詢指定列 name、age 數(shù)據(jù)
db.userInfo.find({}, {name: 1, age: 1});
相當(dāng)于:select name, age from userInfo;
當(dāng)然 name 也可以用 true 或 false,當(dāng)用 ture 的情況下河 name:1 效果一樣,如果用 false 就 是排除 name,顯示 name 以外的列信息。

12、查詢指定列 name、age 數(shù)據(jù), age > 25
db.userInfo.find({age: {$gt: 25}}, {name: 1, age: 1});
相當(dāng)于:select name, age from userInfo where age >25;

13、按照年齡排序 1 升序 -1 降序
升序:db.userInfo.find().sort({age: 1});
降序:db.userInfo.find().sort({age: -1});

14、查詢 name = zhangsan, age = 22 的數(shù)據(jù)
db.userInfo.find({name: "zhangsan", age: 22});
相當(dāng)于:select * from userInfo where name = ‘zhangsan’ and age = ‘22’;

15、查詢前 5 條數(shù)據(jù) db.userInfo.find().limit(5);
相當(dāng)于:selecttop 5 * from userInfo;

16、查詢 10 條以后的數(shù)據(jù)
db.userInfo.find().skip(10);
相當(dāng)于:select from userInfo where id not in ( selecttop 10 from userInfo)

17、查詢?cè)?5-10 之間的數(shù)據(jù)
db.userInfo.find().limit(10).skip(5); 可用于分頁(yè),
limit 是 pageSize,skip 是第幾頁(yè)*pageSize

18、or 與 查詢
db.userInfo.find({$or: [{age: 22}, {age: 25}]});
相當(dāng)于:select * from userInfo where age = 22 or age = 25;

19、findOne 查詢第一條數(shù)據(jù) db.userInfo.findOne();
相當(dāng)于:selecttop 1 * from userInfo; db.userInfo.find().limit(1);

20、查詢某個(gè)結(jié)果集的記錄條數(shù) 統(tǒng)計(jì)數(shù)量
db.userInfo.find({age: {$gte: 25}}).count();
相當(dāng)于:select count(*) from userInfo where age >= 20;

如果要返回限制之后的記錄數(shù)量,要使用 count(true)或者 count(非 0) db.users.find().skip(10).limit(5).count(true)

修改

修改里面還有查詢條件。你要該誰(shuí),要告訴 mongo。
查找名字叫做小明的,把年齡更改為 16 歲:
db.student.update({"name":"小明"},{$set:{"age":16}});

查找數(shù)學(xué)成績(jī)是 70,把年齡更改為 33 歲:
db.student.update({"score.shuxue":70},{$set:{"age":33}});

更改所有匹配項(xiàng)目:
db.student.update({"sex":"男"},{$set:{"age":33}},{multi: true});

完整替換,不出現(xiàn)$set 關(guān)鍵字了: 注意
db.student.update({"name":"小明"},{"name":"大明","age":16});

db.users.update({name: "Lisi"}, {$inc: {age: 50}}, false, true);
相當(dāng)于:update users set age = age + 50 where name = ‘Lisi’;

db.users.update({name: "Lisi"}, {$inc: {age: 50}, $set: {name: "hoho"}}, false, true);
相當(dāng)于:update users set age = age + 50, name = ‘hoho’ where name = ‘Lisi’;

刪除

db.collectionsNames.remove( { "borough": "Manhattan" } )
db.users.remove({age: 132});

刪除一個(gè)
db.restaurants.remove( { "borough": "Queens" }, { justOne: tru

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/19277.html

相關(guān)文章

  • mongoDB初階系列二:node中的增刪改

    摘要:前言上一篇中初階系列一用戶和權(quán)限介紹了用戶和權(quán)限,這一篇將介紹如何在中進(jìn)行增刪改查。這是初階系列的第二篇,接下來(lái)還有第三篇,借助,更優(yōu)雅地操作數(shù)據(jù)。 前言 上一篇中(mongoDB初階系列一:用戶和權(quán)限)介紹了用戶和權(quán)限,這一篇將介紹如何在node中進(jìn)行增刪改查。 準(zhǔn)備 首先,要在node中使用mongoDB,需要安裝MongoDB Driver,命令如下:npm install mo...

    Barrior 評(píng)論0 收藏0
  • mongoDB初階系列二:node中的增刪改

    摘要:前言上一篇中初階系列一用戶和權(quán)限介紹了用戶和權(quán)限,這一篇將介紹如何在中進(jìn)行增刪改查。這是初階系列的第二篇,接下來(lái)還有第三篇,借助,更優(yōu)雅地操作數(shù)據(jù)。 前言 上一篇中(mongoDB初階系列一:用戶和權(quán)限)介紹了用戶和權(quán)限,這一篇將介紹如何在node中進(jìn)行增刪改查。 準(zhǔn)備 首先,要在node中使用mongoDB,需要安裝MongoDB Driver,命令如下:npm install mo...

    kevin 評(píng)論0 收藏0
  • 邁出全棧第一步,vue+node+mysql獨(dú)立完成前后端分離的增刪改流程

    摘要:本使用創(chuàng)建本地服務(wù)器,在就能完成全部流程,并不需要線上服務(wù)器。路徑要與后端接口一致。后端返回成功后,前端數(shù)據(jù)中對(duì)應(yīng)的元素也要?jiǎng)h掉,更新視圖。控制器里拿一個(gè)方法出來(lái)說一下吧,完整的代碼都在。讀取操作完成后調(diào)用釋放連接。 寫在前面 本文只是本人學(xué)習(xí)過程的一個(gè)記錄,并不是什么非常嚴(yán)謹(jǐn)?shù)慕坛蹋M痛蠹乙黄鸸餐M(jìn)步。也希望大家能指出我的問題。適合有一定基礎(chǔ),志在全棧的前端初學(xué)者學(xué)習(xí),從點(diǎn)擊按鈕...

    fsmStudy 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<