日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

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

發布時間:2023/12/9 python 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python数据库模糊查询_Python操作mongodb数据库进行模糊查询操作示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

本文實例講述了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,"students" : { "comments" : "python abc" } }

{ "_id" : 4,"students" : { "comments" : "python abc" } }

{ "_id" : 5,"students" : { "comments" : "python abc" } }

{ "_id" : 7,"students" : { "comments" : "python abc" },"school" : "102 python abc" }

{ "_id" : 8,"school" : "100 python abc xyz" }

{ "_id" : 9,"zipcode" : "100","students" : { "name" : "mike","age" : 12,"comments" : "python" } }

{ "_id" : 10,"students" : { "name" : "Marry","age" : 42,"comments" : "this is a python" } }

{ "_id" : 11,"students" : { "name" : "joe","age" : 92,"comments" : "this is a python program" } }

{ "_id" : 12,"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'_id': 4.0,u'_id': 5.0,u'school': u'102 python abc',u'_id': 7.0,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操作mongodb数据库进行模糊查询操作示例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。