广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Python技术 > 正文

Python的where条件语句_惠州计算机Python软件开发

作者:黄君发布时间:2021-01-14分类:Python技术浏览:1211


导读:如果我们要读取指定条件的数据,可以使用 where 语句:

如果我们要读取指定条件的数据,可以使用 where 语句:

demo_mysql_test.py

读取 name 字段为 BDQN 的记录:

import mysql.connector 

  

mydb = mysql.connector.connect(

  host="localhost",

  user="root",

  passwd="123456",

  database="bdqn_db"

)

mycursor = mydb.cursor() 

  

sql = "SELECT * FROM sites WHERE name ='BDQN'" 

  

mycursor.execute(sql) 

  

myresult = mycursor.fetchall()


for x in myresult:

  print(x)


执行代码,输出结果为:

(1, 'BDQN', 'https://www.bdqn.com')


也可以使用通配符 %:

demo_mysql_test.py

import mysql.connector 

  

mydb = mysql.connector.connect(

  host="localhost",

  user="root",

  passwd="123456",

  database="bdqn_db"

)

mycursor = mydb.cursor() 

  

sql = "SELECT * FROM sites WHERE url LIKE '%oo%'" 

  

mycursor.execute(sql) 

  

myresult = mycursor.fetchall() 

  

for x in myresult:

  print(x)


执行代码,输出结果为:

(1, 'BDQN', 'https://www.bdqn.com') 
(2, 'Google', 'https://www.google.com')


为了防止数据库查询发生 SQL 注入的攻击,我们可以使用 %s 占位符来转义查询的条件:

demo_mysql_test.py

import mysql.connector 

  mydb = mysql.connector.connect(

  host="localhost",

  user="root",

  passwd="123456",

  database="runoob_db"

)

mycursor = mydb.cursor() 

  

sql = "SELECT * FROM sites WHERE name = %s"

na = ("BDQN", ) 

  

mycursor.execute(sql, na) 

  

myresult = mycursor.fetchall() 

  

for x in myresult:

  print(x)


 点击咨询直接了解更多相关资料,我在惠州北大青鸟新方舟等你。

u=1576519448,3003294998&fm=26&gp=0.jpg

标签:惠州计算机软件培训惠州计算件软件开发惠州计算机软件基础惠州计算机Python软件开发惠州Python培训


Python技术排行
标签列表
网站分类
文章归档
最近发表