pymysql中多条件查询
时间: 2023-10-23 09:22:18 浏览: 83
多条件查询
在pymysql中,可以使用WHERE语句来实现多条件查询。下面是一个示例:
``` python
import pymysql
# 连接数据库
conn = pymysql.connect(host='localhost', port=3306, user='root', password='password', db='test')
# 创建游标
cursor = conn.cursor()
# 执行查询语句
sql = "SELECT * FROM table_name WHERE column1='value1' AND column2='value2'"
cursor.execute(sql)
# 获取查询结果
result = cursor.fetchall()
# 输出结果
for row in result:
print(row)
# 关闭游标和数据库连接
cursor.close()
conn.close()
```
在上面的示例中,使用了WHERE语句来实现多条件查询。其中,AND关键字用于连接多个条件,表示多个条件同时满足。如果要实现多个条件中任意一个满足的查询,可以使用OR关键字。例如:
``` python
sql = "SELECT * FROM table_name WHERE column1='value1' OR column2='value2'"
```
阅读全文