一,下载对应python环境的 MySQL连接包 我的是python3 所以下载的是这个 (cmd)
pip3 install PyMySQL
二,创建py文件 编写
import pymysql # 打开数据库连接 db = pymysql.connect(host='localhost', user='root', password='123456', db='test1') # 使用 cursor() 方法创建一个游标对象 cursor cursor = db.cursor() # 使用 execute() 方法执行 SQL 查询 cursor.execute("SELECT * FROM plate") # 使用 fetchall() 方法获取s所有数据. data = cursor.fetchall() print(data) # 关闭数据库连接 db.close()
标签:fetchall,01,python,db,pymysql,cursor,Mysql,连接 From: https://www.cnblogs.com/sanjinxin/p/17559860.html