<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
開啟 mongodb 服務:要管理資料庫,必須先開啟服務,開啟服務使用
mongod --dbpath c:mongodb
管理 mongodb 資料庫:(一定要在新的 cmd 中輸入)
mongo
清屏:
cls
檢視所有資料庫列表
show dbs
使用資料庫、建立資料庫
use student
如果真的想把這個資料庫建立成功,那麼必須插入一個資料。
資料庫中不能直接插入資料,只能往集合(collections)中插入資料。不需要專門建立集合,只
需要寫點語法插入資料就會建立集合:
插入一條資料
db.student.insert({「name」:」xiaoming」});
db.student 系統發現 student 是一個陌生的集合名字,所以就自動建立了集合。
顯示當前的資料集合(mysql 中叫表)
show collections
刪除資料庫,刪除當前所在的資料庫
db.dropDatabase();
刪除集合,刪除指定的集合 刪除表
刪除集合
db.COLLECTION_NAME.drop() db.user.drop()
插入資料,隨著資料的插入,資料庫建立成功了,集合也建立成功了。
db. 表名.insert({"name":"zhangsan"}); student 集合名稱(表)
1 、查詢所有記錄
db.userInfo.find();
相當於:select* from userInfo;
2 、查詢去掉後的當前聚集集合中的某列的重複資料
db.userInfo.distinct("name");
會過濾掉 name 中的相同資料
相當於:select distict name from userInfo;
3 、查詢 age = 22 的記錄
db.userInfo.find({"age": 22});
相當於: select * from userInfo where age = 22;
4 、查詢 age > 22 的記錄
db.userInfo.find({age: {$gt: 22}});
相當於:select * from userInfo where age >22;
5 、查詢 age < 22 的記錄
db.userInfo.find({age: {$lt: 22}});
相當於:select * from userInfo where age <22;
6 、查詢 age >= 25 的記錄
db.userInfo.find({age: {$gte: 25}});
相當於: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 的資料 模糊查詢用於搜尋
db.userInfo.find({name: /mongo/});
相當於:%%
select * from userInfo where name like ‘%mongo%’;
10 、查詢 name 中以 mongo 開頭的
db.userInfo.find({name: /^mongo/});
相當於:select * from userInfo where name like ‘mongo%’;
11 、查詢指定列 name 、age 資料
db.userInfo.find({}, {name: 1, age: 1});
相當於:select name, age from userInfo;
當然 name 也可以用 true 或 false,當用 ture 的情況下河 name:1 效果一樣,如果用 false 就是排除 name,顯示 name 以外的列資訊。
12 、查詢指定列 name 、age 資料, age > 25
db.userInfo.find({age: {$gt: 25}}, {name: 1, age: 1});
相當於: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 的資料
db.userInfo.find({name: 'zhangsan', age: 22});
相當於:select * from userInfo where name = ‘zhangsan’ and age = ‘22’;
15 、查詢前 5 條資料
db.userInfo.find().limit(5);
相當於:selecttop 5 * from userInfo;
16 、查詢 10 條以後的資料
db.userInfo.find().skip(10);
相當於:select * from userInfo where id not in ( select top 10 * from userInfo );
db.collectionsNames.remove( { "borough": "Manhattan" } ) db.users.remove({age: 132}); By default, the remove() method removes all documents that match the remove condition. Use the justOne option to limit the remove operation to only one of the matching documents. db.restaurants.remove( { "borough": "Queens" }, { justOne: true }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45