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


Posted in Python onJune 09, 2018

本文实例讲述了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程序设计有所帮助。

Python 相关文章推荐
python条件和循环的使用方法
Nov 01 Python
python中requests模块的使用方法
Apr 08 Python
python实现多进程按序号批量修改文件名的方法示例
Dec 30 Python
Python属性和内建属性实例解析
Jan 14 Python
浅谈tensorflow之内存暴涨问题
Feb 05 Python
Python使用20行代码实现微信聊天机器人
Jun 05 Python
音频处理 windows10下python三方库librosa安装教程
Jun 20 Python
Python内置函数property()如何使用
Sep 01 Python
python实现简单的名片管理系统
Apr 26 Python
Python中threading库实现线程锁与释放锁
May 17 Python
Python 循环读取数据内存不足的解决方案
May 25 Python
使用tensorflow 实现反向传播求导
May 26 Python
python 用lambda函数替换for循环的方法
Jun 09 #Python
python dataframe常见操作方法:实现取行、列、切片、统计特征值
Jun 09 #Python
python pandas 如何替换某列的一个值
Jun 09 #Python
pandas 对series和dataframe进行排序的实例
Jun 09 #Python
python pandas库中DataFrame对行和列的操作实例讲解
Jun 09 #Python
python pandas修改列属性的方法详解
Jun 09 #Python
numpy判断数值类型、过滤出数值型数据的方法
Jun 09 #Python
You might like
用户的详细注册和判断
2006/10/09 PHP
社区(php&&mysql)六
2006/10/09 PHP
php函数array_merge用法一例(合并同类数组)
2013/02/03 PHP
PHP转换文件夹下所有文件编码的实现代码
2013/06/06 PHP
探讨:使用XMLSerialize 序列化与反序列化
2013/06/08 PHP
使用TextRange获取输入框中光标的位
2006/10/14 Javascript
jQuery 动画弹出窗体支持多种展现方式
2010/04/29 Javascript
jQuery中even选择器的定义和用法
2014/12/23 Javascript
angularjs 处理多个异步请求方法汇总
2015/01/06 Javascript
谈谈JSON对象和字符串之间的相互转换JSON.stringify(obj)和JSON.parse(string)
2015/10/01 Javascript
Jquery中request和request.form和request.querystring的区别
2015/11/26 Javascript
jquery自定义插件——window的实现【示例代码】
2016/05/06 Javascript
基于JS代码实现实时显示系统时间
2016/06/16 Javascript
js实现把时间戳转换为yyyy-MM-dd hh:mm 格式(es6语法)
2017/12/28 Javascript
JavaScript中this的学习笔记及用法整理
2020/02/17 Javascript
python使用urllib2模块获取gravatar头像实例
2013/12/18 Python
python模拟登陆阿里妈妈生成商品推广链接
2014/04/03 Python
Python实现国外赌场热门游戏Craps(双骰子)
2015/03/31 Python
详解Python编程中包的概念与管理
2015/10/16 Python
pytorch 数据集图片显示方法
2018/07/26 Python
浅析python中的迭代与迭代对象
2018/10/08 Python
pycharm 在windows上编辑代码用linux执行配置的方法
2018/10/27 Python
python 阶乘累加和的实例
2019/02/01 Python
利用anaconda保证64位和32位的python共存
2021/03/09 Python
在Python中append以及extend返回None的例子
2019/07/20 Python
Python进程池Pool应用实例分析
2019/11/27 Python
Python opencv相机标定实现原理及步骤详解
2020/04/09 Python
html5实现多图片预览上传及点击可拖拽控件
2018/03/15 HTML / CSS
英国汽车零件购物网站:GSF Car Parts
2019/05/23 全球购物
维多利亚的秘密阿联酋官网:Victoria’s Secret阿联酋
2019/12/07 全球购物
管理信息系学生的自我评价
2014/01/11 职场文书
党的群众路线教育实践活动督导组工作情况汇报
2014/10/28 职场文书
会计简历自我评价
2015/03/10 职场文书
标准发言稿结尾
2019/07/18 职场文书
老生常谈 使用 CSS 实现三角形的技巧(多种方法)
2021/04/13 HTML / CSS
Qt数据库应用之实现图片转pdf
2022/06/01 Java/Android