将数据从 MySQL 导入到 Excel
Importing data from MySQL to Excel
我有 excel sheet 格式的数据(CSV 格式),我已将此数据导入 Mysql 并根据日期(仅 2014 年和 2015 年)筛选数据被选中。
客户端想要 excel 中的数据。所以,我必须将我根据日期提取的数据导入 excel。我相信这将是暂时的 table。那么,我们如何将临时 tables 导入到 excel.
我不知道如何在这种情况下使用 mysql 到 excel 转换器,因为正在使用临时 table。
最简单的方法如下
select <fieldnames>
from <temporary table>
然后将结果复制并粘贴到 excel。另存为 excel 格式,瞧!
编辑:如果您使用像 phpMyamin 这样的工具,您可以将查询结果导出为所需的格式。如果要 headers,请在高级导出中选择 "include column names"。
如果您只需要在 excel 中打开的文档,您可以从 mysql 中将表格导出为 CSV 文件。
http://www.mysqltutorial.org/mysql-export-table-to-csv/
如果您必须实际创建一个 excel 工作表,那么您将不得不根据您使用的编程语言使用一个库来将数据转换为 excel 电子表格。
这是 MySQL 的一个软件来处理
https://www.mysql.com/why-mysql/windows/excel/
MySQL for Excel makes the task of getting MySQL data into Excel a very
easy one; there are no intermediate CSV files required, only a couple
of clicks and data will be imported to Excel. MySQL for Excel supports
importing data from tables, views and stored procedures.
我有 excel sheet 格式的数据(CSV 格式),我已将此数据导入 Mysql 并根据日期(仅 2014 年和 2015 年)筛选数据被选中。 客户端想要 excel 中的数据。所以,我必须将我根据日期提取的数据导入 excel。我相信这将是暂时的 table。那么,我们如何将临时 tables 导入到 excel.
我不知道如何在这种情况下使用 mysql 到 excel 转换器,因为正在使用临时 table。
最简单的方法如下
select <fieldnames>
from <temporary table>
然后将结果复制并粘贴到 excel。另存为 excel 格式,瞧!
编辑:如果您使用像 phpMyamin 这样的工具,您可以将查询结果导出为所需的格式。如果要 headers,请在高级导出中选择 "include column names"。
如果您只需要在 excel 中打开的文档,您可以从 mysql 中将表格导出为 CSV 文件。
http://www.mysqltutorial.org/mysql-export-table-to-csv/
如果您必须实际创建一个 excel 工作表,那么您将不得不根据您使用的编程语言使用一个库来将数据转换为 excel 电子表格。
这是 MySQL 的一个软件来处理
https://www.mysql.com/why-mysql/windows/excel/
MySQL for Excel makes the task of getting MySQL data into Excel a very easy one; there are no intermediate CSV files required, only a couple of clicks and data will be imported to Excel. MySQL for Excel supports importing data from tables, views and stored procedures.