Python将SQL结果导出到Excel

时间:2013-09-24 10:09:58

标签: python excel

我想使用Python将SQL查询的结果导出到Excel工作表。

代码

sql='''
      Select * from PTWorkOrderTasks 
     '''

// this is the code to generate sql result
sql_result= self.account.DBService().ExecuteQuery(sql,{})

if sql_result.Rows.Count>0:
  (--code to export to excel--)

我需要Python代码将此查询结果导出到Excel。

任何人都可以帮我纠正这个吗?

1 个答案:

答案 0 :(得分:0)

您可以使用xlrd。请参阅Github上的tutorial