摘要: sql和mongodb的术语对比 SQL术语/概念MongoDB术语/概念解释/说明 database database 数据库 table collection 数据库表/集合 row document 数据记录行/文档 column field 数据字段/域 index index 索引 tab 阅读全文
posted @ 2020-06-10 00:26 极地阳光-ing 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 连接mongodb import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017") # dblist = myclient.list_database_names() # 列出所有库 mydb = myclient 阅读全文
posted @ 2020-06-10 00:24 极地阳光-ing 阅读(191) 评论(0) 推荐(0) 编辑