python 读取Mysql中一个表的内容
时间: 2023-02-18 08:26:36 浏览: 85
Python如何读取MySQL数据库表数据
可以使用Python的MySQLdb库来读取MySQL中的表内容。可以参考以下代码:
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect("localhost","username","password","database_name" )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM table_name"
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
# 打印结果
print ("fname=%s,lname=%s,age=%s" % \
(fname, lname, age))
except:
print ("Error: unable to fetch data")
# 关闭数据库连接
db.close()
阅读全文