获取集合
getCollection()
参数:字符串
查询
getCollection('table').find()
参数:字典,{}
插入单条
insertOne()
参数:json,python字典,{}
批量插入
insertMany()
参数:数组(元素都是json),列表(元素都是字典)
返回查询数据条数
count()
限制返回条数
limit()
排序
sort()
字段值-1为倒序
修改数据
updateOne()
updateMany({$set:{}})
参数一致:json
删除数据
deteleOne()
deteleMany()
数据去重
distinct()
参数:key,{"key":{"$gte":"value"}}