gpt4 book ai didi

python - 批量插入Python SQL

转载 作者:太空宇宙 更新时间:2023-11-03 15:41:10 24 4
gpt4 key购买 nike

我有一个漂亮的 soup 4 脚本,它可以从网站上删除数据,然后我想批量插入删除的数据的内容。下面是我创建的脚本,但是我想对其进行调整,以便我可以将列表批量插入到我的数据库中(为了提高效率)

listoflists = []
x = 1
A_var = 11
B_var = 22
while x < 3:
mlist = A_var, B_var
listoflists.append(mlist)

x = x + 1


print listoflists
print A_var
print B_var


cur_urls.execute ("""INSERT INTO test_table (ac, bc) VALUES (%s, %s);""",(A_var, B_var,))
conn_urls.commit()


cur_comp.close()
cur_urls.close()
conn_urls.close()

最佳答案

listoflists = []
x = 1
A_var = 11
B_var = 22
while x < 3:
mlist = A_var, B_var
listoflists.append(mlist)

x = x + 1


print listoflists #[(11,12),(11,12)] This is listOfTuple
print A_var #11
print B_var #12

for tup in listoflists:
cur_urls.execute ("""INSERT INTO test_table (ac, bc) VALUES (%s, %s);""",(tup[0], tup[1]))

conn_urls.commit()


cur_comp.close()
cur_urls.close()
conn_urls.close()

关于python - 批量插入Python SQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42109294/

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