pymysql 取回数据
时间: 2023-11-16 07:54:17 浏览: 87
Python数据获取
使用 PyMySQL 取回数据的步骤如下:
1. 连接数据库
2. 创建游标对象
3. 编写 SQL 查询语句
4. 执行 SQL 查询语句
5. 获取查询结果
6. 关闭游标对象和数据库连接
示例代码如下:
```python
import pymysql
# 连接数据库
conn = pymysql.connect(host='localhost', port=3306, user='root', password='123456', db='test')
# 创建游标对象
cursor = conn.cursor()
# 编写 SQL 查询语句
sql = 'SELECT * FROM students'
# 执行 SQL 查询语句
cursor.execute(sql)
# 获取查询结果
result = cursor.fetchall()
for row in result:
print(row)
# 关闭游标对象和数据库连接
cursor.close()
conn.close()
```
阅读全文