2014-10-06 165 views
-1

我在使用Hive插入數據時遇到問題。列出我目前使用python代碼:Hive查詢插入問題

query = "INSERT INTO twitter_leads."+str(screen_name)+" ("+int(user)+','+str(input1.text)+','+int(input1.id)+")"      
curs.execute(query) 

TypeError: cannot concatenate 'str' and 'int' objects 

我遍歷,for循環,並在終端上沒有問題,打印該數據。只是不能插入到表中。我相信這不是一個身份驗證或連接問題。

回答

1

您可以使用str(user)str(input.id)而不是int()。