python 数据库查询到的结果如何能赋值给dataframe并标明列明
用下面语句取出了数据库中的数据,怎样才能将他们赋值给DataFrame,并按SQL中的字段名给DataFrame的数据标明列名,谢谢count=cur.execute('...
用下面语句取出了数据库中的数据,怎样才能将他们赋值给DataFrame,并按SQL中的字段名给DataFrame的数据标明列名,谢谢
count=cur.execute('select bug_type,bug_severity,count(bug_type),ft_id from tm_bug group by ft_id,bug_type,bug_severity')
result=cur.fetchall() 展开
count=cur.execute('select bug_type,bug_severity,count(bug_type),ft_id from tm_bug group by ft_id,bug_type,bug_severity')
result=cur.fetchall() 展开
1个回答
展开全部
cursor.execute(sql)
columns_name = [tuple[0] for tuple in cursor.description]
data= pd.DataFrame(cursor.fetchall(), columns=columns_name)
cursor.close()
这样写
columns_name = [tuple[0] for tuple in cursor.description]
data= pd.DataFrame(cursor.fetchall(), columns=columns_name)
cursor.close()
这样写
更多追问追答
追问
2个问题,
为什么第二句要用tuple[0]
第三句输出data是报错没有被定义data is not defined
追答
第一个问题
你print下cursor.description就知道里面是什么结构了
第二个问题
data是被赋值的,怎么可能报未定义呢?你有没有装pandas啊?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询