gpt4 book ai didi

python - PyMySQL 没有按预期进行插入

转载 作者:行者123 更新时间:2023-11-29 10:37:07 25 4
gpt4 key购买 nike

我有一个表 lucene_try ,如下所示:

id || title    || comment
1 || Title 1 || Sentence 1 of Comment 1. Sentence 2 of Comment 1.
2 || Title 1 || Sentence 1 of Comment 2. Sentence 2 of Comment 2.

我想要实现的是对于每个标题以及标题的每个评论,将评论分成不同的句子并将其放入不同的表中,该表在 lucene_rs 中必须如下所示:

id || title    || root_comment   || sub_comment
1 || Title 1 || Comment 1 || Sentence 1
2 || Title 1 || Comment 1 || Sentence 2
3 || Title 1 || Comment 2 || Sentence 1
4 || Title 1 || Comment 2 || Sentence 2

我已经为此编写了代码,当我在控制台/终端上打印它时,它可以正常工作。它打印Comment 1的Sentence 1和Sentence 2以及Comment 2。但是,当我想插入此数据时,它只打印并插入Comment 1的Sentence 1和Sentence 2。

这是我的代码:

import pymysql
import pymysql.cursors
import random
from bs4 import BeautifulSoup
import nltk
from nltk import tokenize
import pdb

conn = pymysql.connect(host='localhost', user='root', password='password', db='master_thesis', autocommit=True)
cursor = conn.cursor()
cursor.execute("SELECT * FROM lucene_counter WHERE count > 5 AND count <= 30")

lucene_rs_list = list()

for row in cursor:
lucene_rs_list.append(row[1])

random.shuffle(lucene_rs_list)
final_list = lucene_rs_list[:1]

for i in range(len(final_list)):
current_title = final_list[i]
query = "SELECT title, comment FROM lucene_try WHERE title = %s"
cursor.execute(query, final_list[i])
for row in cursor:
root_comment = BeautifulSoup(row[1], "lxml").text
print("Root Title: ", current_title)
print("Root Comment: ", root_comment)
cleancomment = tokenize.sent_tokenize(root_comment)
for j in range(len(cleancomment)):
# THIS LINE PRINTS EVERYTHING PROPERLY WITH ALL THE COMMENTS AND SUBCOMMENTS IF CURSOR.EXECUTE IS COMMENTED OUT
print("Sub Comment: ", cleancomment[j])
# IF THE CURSOR.EXECUTE IS UNCOMMENTED, IT ONLY DISPLAYS RESULT OF THE FIRST ROOT_COMMENT AND NOT ALL
cursor.execute("""INSERT INTO lucene_rs (title, root_comment, comment) VALUES ("%s", "%s", "%s")""" % (current_title, root_comment, cleancomment[j]))
print("\n")

conn.close()

最佳答案

问题在于,您使用与获取 SELECT 查询结果相同的游标来执行 INSERT 查询。当您执行 INSERT 时,它不再包含 SELECT 的结果,因此循环的下一次迭代将停止。

SELECT 的所有结果读入列表,然后循环遍历该列表,或者对 INSERT 使用不同的光标。

conn = pymysql.connect(host='localhost', user='root', password='password', db='master_thesis', autocommit=True)
cursor = conn.cursor()
cursor2 = conn.cursor()
cursor.execute("SELECT * FROM lucene_counter WHERE count > 5 AND count <= 30")

lucene_rs_list = list()

for row in cursor:
lucene_rs_list.append(row[1])

random.shuffle(lucene_rs_list)
final_list = lucene_rs_list[:1]

for i in range(len(final_list)):
current_title = final_list[i]
query = "SELECT title, comment FROM lucene_try WHERE title = %s"
cursor.execute(query, final_list[i])
for row in cursor:
root_comment = BeautifulSoup(row[1], "lxml").text
print("Root Title: ", current_title)
print("Root Comment: ", root_comment)
cleancomment = tokenize.sent_tokenize(root_comment)
for j in range(len(cleancomment)):
# THIS LINE PRINTS EVERYTHING PROPERLY WITH ALL THE COMMENTS AND SUBCOMMENTS IF CURSOR.EXECUTE IS COMMENTED OUT
print("Sub Comment: ", cleancomment[j])
# IF THE CURSOR.EXECUTE IS UNCOMMENTED, IT ONLY DISPLAYS RESULT OF THE FIRST ROOT_COMMENT AND NOT ALL
cursor2.execute("""INSERT INTO lucene_rs (title, root_comment, comment) VALUES ("%s", "%s", "%s")""" % (current_title, root_comment, cleancomment[j]))
print("\n")

conn.close()

关于python - PyMySQL 没有按预期进行插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46233415/

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