摘要:
sql和mongodb的术语对比 SQL术语/概念MongoDB术语/概念解释/说明 database database 数据库 table collection 数据库表/集合 row document 数据记录行/文档 column field 数据字段/域 index index 索引 tab 阅读全文
摘要:
连接mongodb import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017") # dblist = myclient.list_database_names() # 列出所有库 mydb = myclient 阅读全文