MongoDB常用的比较符号和一些功能符号

比较符号

results = collection.find({
    
    'age': {
    
    '$gt': 20}})

在这里插入图片描述
功能符号

results = collection.find({
    
    'name': {
    
    '$regex': '^M.*'}})

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/rubyw/article/details/132673367