Automate Excel Reports from Mysql workbench -
i work small start up, have mysql database. boss wants reports on consistent basis , i'm trying figure out how automate these reports created every few days. boss likes see reports in excel format.
i have been doing research , came across mysql excel. using excel 2013.
my first question is
is mysql excel best tool job?
i tried downloading mysql excel told me install visual studio tool runtime, install?
any guidance helpful
you can run query using script create .csv file alternate xls can open file in xls , rename it.
select * outfile '/tmp/result.csv' fields terminated ',' optionally enclosed '"' lines terminated '\n' table;
then rename file .csv xls.
or
https://www.mysql.com/why-mysql/windows/excel/import/ http://www.w3resource.com/mysql/exporting-and-importing-data-between-mysql-and-microsoft-excel.php
Comments
Post a Comment