Since MySQL 5.1, there has been a native tool called MySQL for Excel.
It is bundled along with MySQL for Visual Studio, a bunch of connectors, sample databases and so forth.
The MySQL Documentation has a webpage for
There is also a forum for users of this product (As of this posting, there are 5 active questions that have activity this month)
MANUAL ALTERNATIVE
If you have the patience, you could do the following
STEP 01) Create a table using the CSV Storage Engine
When you create the table like this:
CREATE TABLE mydb.mytable
(
i INT NOT NULL,
c CHAR(10) NOT NULL,
...
column29 INT NOT NULL,
column30 CHAR(10) NOT NULL,
column31 CHAR(30) NOT NULL
) ENGINE=CSV;
This will create two files under the mydb subfolder
CAVEAT : I do not think NULL
columns are allowed for MySQL CSV tables
STEP 02)
- Using Excel, export the spreadsheet with the same number of columns as the MySQL CSV table. Empty Cells should come out as
""
.
STEP 03) If using MySQL in Linux, you could do this
cd /var/lib/mysql/mydb
mv mytable.CSV mytable_old.CSV
STEP 04) Copy the Excel output into /var/lib/mysql/mydb/mytable.CSV
STEP 05) In the mysql client, run
FLUSH TABLES;
SELECT * FROM mydb.mytable;
This will close and reopen all tables. If you see your data, CONGRATULATIONS !!!
STEP 06) If you get an Error
If you get an error on SELECT * FROM mydb.mytable;
, then one of the cells is not field enclosed with double quotes. Just re-export the data and try Step 04 again until you get it right
For Those using MySQL for Windows
If you have MySQL for Windows, you can drop in mydb\mytable.CSV becauswe of the way Windows locks files. You will have to run net stop mysql
, copy the file in, and net start mysql
, skip the FLUSH TABLES;
and just run SELECT * FROM mydb.mytable;
Give it a Try !!!