作爲我對tweet的情感分析的一部分,我需要從我的數據庫中提取tweets,運行python腳本以獲取情感分數並將其插回到數據庫中。我的代碼Python與SQL。在for循環中插入列中的變量
部分:
#conneting to database (works perfect)
cnxn = pyodbc.connect('DRIVER={SQL Server};SERVER=xxxxxxx\SQLEXPRESS;DATABASE=TestTwitter;UID=;PWD=')
cursor = cnxn.cursor()
#Alter table (works perfect)
cursor.execute("ALTER TABLE TestTable ADD score2 varchar(255);")
#select tweet from each row and calculate score (works perfect)
cursor.execute("SELECT TestTable.Tweet FROM TestTable")
for row in cursor.fetchall():
print (row[0])
sentim = sentiment(row[0])
print (sentim)
#update table and add sentiment score for each row (not so perfect)
cursor.execute("Update TestTable SET score2 = '" + (str(sentim)) + "';")
cnxn.commit()
當更新表,所有行會得到相同的情緒值作爲第一鳴叫,而不是自己的。 「print(sentiment)」逐個顯示每條推文的得分,但似乎循環在更新表格時不起作用。有任何解決這個問題的方法嗎?