欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python使用sql语句对mysql数据库多条件模糊查询的思路详解

程序员文章站 2022-06-22 13:59:00
def find_worldbyname(c_name,continent): print(c_name) print(continent) sql = " select * fro...
def find_worldbyname(c_name,continent):
    print(c_name)
    print(continent)
    sql = " select * from world where  1=1 "
    if(c_name!=none):
        sql=sql+"and ( c_name like '%"+c_name+"%' )"
    if(continent!=none):
        sql=sql+" and ( continent like '%"+continent+"%') "
    sql=sql+" and dt=(select dt from world order by dt desc limit 1) order by confirm desc "

          # "and continent like '%%%%%s%%%%'" \
          # " order by dt desc " %(c_name,continent)
    # sql_temp = " select * from world where c_name like '%"+c_name+"%' "
    res = query(sql)
    list= []
    for i in res:
        # print(i)
        list.append(i)
    return list;

背景:

页面的搜索框是有两个搜索条件,一个是国家,一个是大洲。

那么在数据库查询的时候就会出现问题,如果国家传的值是none那么使用and连接的sql语句这个条件会被

整体判定为false,也就是另一个查询条件 “大洲 ”就会作废,为了防止参数出现这样的错误。需要在写sql语

句的时候对参数是否为空加一个判断条件,然后逐层添加sql语句。

思路:

首先使用开头的一个sql语句:

sql = " select * from world where 1=1 "

之后逐层判定参数是否为空,再拼接sql语句:

if(c_name!=none):
          sql=sql+"and ( c_name like '%"+c_name+"%' )"
      if(continent!=none):
          sql=sql+" and ( continent like '%"+continent+"%') "
      sql=sql+" and dt=(select dt from world order by dt desc limit 1) order by confirm desc "

还有一个地方需要注意:
sql语句传参数,参数是一个变量,有两种方式:
① 直接拼接到sql语句中:

var c_name="test"
sql_temp = " select * from world where c_name like ' %"+c_name+"% '"

② 使用占位符%代替,在语句末尾再替换占位符:

sql = " select * from world where c_name like '%%%%%s%%%%' and continent like '%%%%%s%%%%'" %(c_name,continent)

Python使用sql语句对mysql数据库多条件模糊查询的思路详解

tomorrow the birds will sing.

到此这篇关于python使用sql语句对mysql数据库多条件模糊查询的思路详解的文章就介绍到这了,更多相关python mysql多条件模糊查询内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!