Forum : How to export table data to Microsoft Excel with SELECT INTO OUTFILE statement?
Brief description  about Online courses   join in Online courses
View Arun  Desai 's Profile

How to export table data to Microsoft Excel with SELECT INTO OUTFILE statement?

Hi Sir,

I am new to MySQL. I want to export MySQL Table data to Microsoft Excel. Can you explain, how to export data to Microsoft Excel with SELECT INTO OUTFILE?
Asked by Arun Desai | Nov 23, 2009 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi Desai,

MySQL SELECT INTO OUTFILE statement can help you to export MySQL table data to Microsoft Excel. It’s used when anyone wants to direct query output to a file. This file can then be opened by MS Excel, or imported into another database like Microsoft Access, Oracle, or any other delimitation supporting software. Take an example, it seems working for me with Windows XP:

SELECT * INTO OUTFILE "C:\\export_table_data_excel.xls"
FIELDS TERMINATED BY '\t'
LINES TERMINATED BY '\n'
FROM database_name.table_name;

The export_table_data_excel.xls will be created at C drive. If the target file path is omitted, then this file will be created at MySQL data directory.
Nov 23, 2009