Python操作mongodb数据库进行模糊查询操作示例

作者:shaomine 时间:2024-01-29 03:40:45 

本文实例讲述了Python操作mongodb数据库进行模糊查询操作。分享给大家供大家参考,具体如下:


# -*- coding: utf-8 -*-
import pymongo
import re
from pymongo import MongoClient
#创建连接
#10.20.66.106
client = MongoClient('10.20.4.79', 27017)
#client = MongoClient('10.20.66.106', 27017)
db_name = 'ta'
db = client[db_name]

假设mongodb数据库中school 集合中有一些数据记录


{ "_id" : 1, "zipcode" : "63109", "students" : { "comments" : "python abc" } }
{ "_id" : 2, "zipcode" : "63110", "students" : { "comments" : "python abc" } }
{ "_id" : 3, "zipcode" : "63109", "students" : { "comments" : "python abc" } }
{ "_id" : 4, "zipcode" : "63109", "students" : { "comments" : "python abc" } }
{ "_id" : 5, "zipcode" : "63109", "students" : { "comments" : "python abc" } }
{ "_id" : 7, "zipcode" : "63109", "students" : { "comments" : "python abc" }, "school" : "102 python abc" }
{ "_id" : 8, "zipcode" : "63109", "students" : { "comments" : "python abc" }, "school" : "100 python abc xyz" }
{ "_id" : 9, "zipcode" : "100", "students" : { "name" : "mike", "age" : 12, "comments" : "python" } }
{ "_id" : 10, "zipcode" : "100", "students" : { "name" : "Marry", "age" : 42, "comments" : "this is a python" } }
{ "_id" : 11, "zipcode" : "100", "students" : { "name" : "joe", "age" : 92, "comments" : "this is a python program" } }
{ "_id" : 12, "zipcode" : "100", "students" : { "name" : "joedd", "age" : 34, "comments" : "python is a script language" } }

现在要对students中comments的数据进行模糊查询, python中模糊查询要借助正则表达式:

1、查询comments中包含"abc"的记录:


for u in db.school.find({'students.comments':re.compile('abc')}):
print u

结果如下:

{u'students': {u'comments': u'python abc'}, u'_id': 1.0, u'zipcode': u'63109'}
{u'students': {u'comments': u'python abc'}, u'_id': 2.0, u'zipcode': u'63110'}
{u'students': {u'comments': u'python abc'}, u'_id': 3.0, u'zipcode': u'63109'}
{u'students': {u'comments': u'python abc'}, u'_id': 4.0, u'zipcode': u'63109'}
{u'students': {u'comments': u'python abc'}, u'_id': 5.0, u'zipcode': u'63109'}
{u'students': {u'comments': u'python abc'}, u'school': u'102 python abc', u'_id': 7.0, u'zipcode': u'63109'}
{u'students': {u'comments': u'python abc'}, u'school': u'100 python abc xyz', u'_id': 8.0, u'zipcode': u'63109'}

2、查询comments中包含"this is"的记录:


for u in db.school.find({'students.comments':re.compile('this is')}):
print u

结果如下:

{u'students': {u'age': 42.0, u'name': u'Marry', u'comments': u'this is a python'}, u'_id': 10.0, u'zipcode': u'100'}
{u'students': {u'age': 92.0, u'name': u'joe', u'comments': u'this is a python program'}, u'_id': 11.0, u'zipcode': u'100'}

由此可见,模糊查询要用到re模块,查询条件利用re.compile()函数

希望本文所述对大家Python程序设计有所帮助。

来源:https://www.cnblogs.com/shaosks/p/5740629.html

标签:Python,mongodb数据库,模糊查询
0
投稿

猜你喜欢

  • Django利用LogEntry生成历史操作实战记录

    2021-10-23 04:23:58
  • Mysqlslap MySQL压力测试工具 简单教程

    2024-01-15 20:10:10
  • python提取照片坐标信息的实例代码

    2023-06-01 16:37:10
  • 网页图片延时加载的js代码

    2024-04-22 13:22:41
  • 浏览器右下角弹出提示窗口

    2008-10-30 12:37:00
  • css+JavaScript实现PDF、ZIP、DOC链接的标注

    2007-05-11 17:03:00
  • mysql 5.6.23 安装配置环境变量教程

    2024-01-19 11:58:14
  • 关于Youtube URL的十个技巧

    2009-04-21 13:19:00
  • SQL Server 索引和视图详解

    2024-01-12 19:44:23
  • Python学习之日志模块详解

    2022-06-24 09:20:22
  • Python json 错误xx is not JSON serializable解决办法

    2021-06-25 21:58:05
  • python基础之多态

    2022-04-05 10:06:06
  • Python MySQLdb模块连接操作mysql数据库实例

    2024-01-18 03:10:26
  • 一篇文章带你了解python标准库--random模块

    2023-09-18 10:45:34
  • 用Python写一个无界面的2048小游戏

    2022-02-12 11:18:23
  • Python对象循环引用垃圾回收算法详情

    2021-03-02 23:29:14
  • Web开发之JavaScript

    2024-04-26 17:13:54
  • Python定时任务工具之APScheduler使用方式

    2022-02-02 05:50:51
  • Python读取csv文件实例解析

    2023-01-21 07:47:32
  • Java连接mysql数据库的详细教程(推荐)

    2024-01-26 10:30:35
  • asp之家 网络编程 m.aspxhome.com