gpt4 book ai didi

python - 数据没有插入到我的表中

转载 作者:行者123 更新时间:2023-11-29 03:01:33 24 4
gpt4 key购买 nike

import MySQLdb
import csv
mydb = MySQLdb.connect(host='localhost',user='root',passwd='root', db='kabir')
cursor = mydb.cursor()

data = csv.reader(file('data.csv'))

#cursor.execute('create table actors(name varchar(20),age integer)')
for row in data:
cursor.execute('INSERT INTO actors(name,age) VALUES(%s %s)' ,row)
mydb.commit()
cursor.close()

最佳答案

您没有在 %s 和 %s 之间指定逗号。将其更改为:

cursor.execute('INSERT INTO actors(name,age) VALUES(%s, %s)' ,row)

然后尝试..

关于python - 数据没有插入到我的表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22906262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com