MongoDB 學習筆記

2021-09-27 02:31:47 字數 702 閱讀 9670

import pymongo

client = pymongo.mongoclient('localhost',27017) #利用pymongo的mongoclinet 方法構造clinet

xiaoshuo = client['xiaoshuo']                            #利用clinet物件建立xiaoshuo表

sheet_1 = xiaoshuo['sheet_1']                            #建立表內的不同sheet

#讀取**資訊

path = '/users/jiaweifang/downloads/117524.txt'

with open (path,'r') as f:

lines = f.readlines()

for index,line in enumerate(lines):

data =

sheet_1.insert_one(data) #利用sheet_1.insert_one()方法乙個乙個插入sheet表 這個動作不要重複做

#'$lt' '$lte' '$gt' '$gte' '$ne'

#for item in sheet_1.find(}): #通過利用sheet.find方法 讀取想要的東西 在函式內使用字典刪選

#print(item)

MongoDB學習筆記

從接觸計算機學習開始,我所使用的資料庫就是mysql,oracle這樣的關係型資料庫。早就聽說了nosql的概念,也對其有代表性的非關係型資料庫mongodb有所耳聞,一直想學習學習這項從未使用過的技術,可是由於種種原因,又沒有時間來學習學習這項新的概念。也就是這麼巧,目前的工作中,使用到的就是mo...

mongodb學習筆記

匯入json檔案命令 mongoimport db test collection user file d new.json mongodb查詢某一條件的資料插入到集合中 var result db.csmdr.find while result.hasnext db.新建表名.insert res...

MongoDB 學習筆記

mongodb 將資料儲存為乙個文件。mongodb是乙個基於分布式檔案儲存的資料庫。鏈結格式 mongodb username password host1 port1 host2 port2 hostn portn database options 乙個mongodb中可以建立多個資料庫,mon...