python中连接数据库成功后怎样将SQL查询语句结果取回作数据分析
用下面语句连接数据库成功后,用什么函数取到SQL查询语句结果用pandas进行数据分析,谢谢importMySQLdbtry:conn=MySQLdb.connect(h...
用下面语句连接数据库成功后,用什么函数取到SQL查询语句结果用pandas进行数据分析,谢谢
import MySQLdb
try:
conn=MySQLdb.connect(host='hostname',user='username',passwd='passwd',db='tkittm_qmt2',port=3306)
cur=conn.cursor()
cur.execute('select * from pm_task')
cur.close()
conn.close()
except BaseException as e:
print("Mysql Error %d: %s"%(e.args[0],e.args[1])) 展开
import MySQLdb
try:
conn=MySQLdb.connect(host='hostname',user='username',passwd='passwd',db='tkittm_qmt2',port=3306)
cur=conn.cursor()
cur.execute('select * from pm_task')
cur.close()
conn.close()
except BaseException as e:
print("Mysql Error %d: %s"%(e.args[0],e.args[1])) 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询