python读取mysql的某一列
时间: 2023-03-29 18:02:36 浏览: 226
Python如何读取MySQL数据库表数据
可以使用Python中的MySQL Connector模块来读取MySQL的某一列。首先需要安装MySQL Connector模块,然后连接到MySQL数据库,选择要读取的列并执行查询语句,最后将结果存储在变量中。以下是一个示例代码:
```python
import mysql.connector
# 连接到MySQL数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 选择要读取的列并执行查询语句
mycursor = mydb.cursor()
mycursor.execute("SELECT column_name FROM yourtable")
# 将结果存储在变量中
result = mycursor.fetchall()
# 输出结果
for x in result:
print(x)
```
阅读全文