python将结果保存到mysql数据库中
时间: 2023-09-03 08:16:33 浏览: 79
python将数据存入mysqld数据库
您可以使用Python中的MySQL Connector模块来连接MySQL数据库,并使用SQL语句将结果保存到数据库中。以下是一个示例代码,假设您已经安装了MySQL Connector模块并且已经创建了一个名为“testdb”的数据库。
```python
import mysql.connector
# 连接数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="testdb"
)
# 创建游标
mycursor = mydb.cursor()
# 执行SQL语句
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
val = ("John", "Highway 21")
mycursor.execute(sql, val)
# 提交更改
mydb.commit()
# 打印行数
print(mycursor.rowcount, "record inserted.")
```
此代码将“John”和“Highway 21”这两个值插入到名为“customers”的表中的“name”和“address”列中。您可以根据需要更改表名和列名,以及插入不同的值。
阅读全文