python从MySQL插入数据
时间: 2024-05-07 12:20:35 浏览: 39
Python访问MySQL数据库
在Python中,可以使用MySQL Connector模块来连接MySQL数据库,并使用SQL语句向数据库中插入数据。下面是一个示例代码:
```python
import mysql.connector
# 连接数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建游标
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.")
```
在上面的示例中,我们连接到本地MySQL数据库,并插入了一个名为John,地址为Highway 21的客户。首先,我们创建了一个MySQL连接对象mydb,并使用此对象创建游标对象mycursor。然后,我们定义了要插入的SQL语句和要插入的值,并使用mycursor执行SQL语句。最后,我们使用mydb.commit()提交事务并输出插入数据的行数。
阅读全文