最近在用Python实现一个数据管理系统,单个表数据导出到不同Excel没问题,对应的关键代码为:
sql="select * from %s into outfile %s" %(tableName,path)
但要求将多个表导出到同一Excel的不同sheet下,请问如何实现呢?求大神相助