mongoDB

一、簡介

二、使用場景

三、安裝與卸載

四、基本概念和結構

五、基本操作

db.集合名.find({"age":{$gt: 20}})

查詢age > 20的記錄

$lt:小於 <

$lte:小於等於 <=

$gt:大於 >

$gte:大於等於 >=

$ne::

六、python與MongoDB

1. 配置環境

2. 關於授權問題

3. 連接並打開資料庫

conn = MongoClient(192.168.3.33, 27017)

db = conn.mydb

# coding:utf-8from pymongo import MongoClientconn = MongoClient("192.168.3.38",27017)db = conn.admindb.authenticate("userAdmin","admin0987") #認證用戶名和密碼s = db.system.usersprint("--all user--")#print(s.find_one())for row in s.find({"user":"{$regex:/admin/i}"}): print(row)

4. 通過集合操作

5. mongodb條件操作符

# (>) 大於 : $gt

# (<) 小於 : $lt

# (>=) 大於等於: $gte

# (<= ) 小於等於 : $lte


推薦閱讀:

SqlServer資料庫數據恢復報告
基於協程和非同步IO的NoSQL資料庫AsyncDB正式發布
資料庫系統概念筆記(1)引言(上)
Python採集微博熱評進行情感分析祝你狗年脫單
從國內哪些公司可以買到比較靠譜的 POI 資料庫?

TAG:MongoDB | 資料庫 | Python3x |