Reprinted:
There are many methods, but we recommend that you first look at the MySQL development documentation, which is very detailed. If you are too lazy to read it, you can refer to the following
1. There is a software PHP Excel parser pro v4.2 can, you can download here: http://down.chinaz.com/s/9459.asp
2. Save the Excel file in CSV format. Then use phpMyAdmin to import MySQL
3. Import access to MySQL, or write a program to read the data in Excel and store the data in MySQL.
4. Another stupid manual method is to use Excel to generate an SQL statement and then run it in MySQL. This method is suitable for importing an Excel table to various SQL databases:
1. Assume that your table contains columns A, B, and C and you want to import the data to the table in your database. The corresponding fields are col1, col2, and col3.
2. Add a column to your table and use the Excel Formula to automatically generate an SQL statement. The specific method is as follows:
1. Add a column (assuming column D)
2. In column D of the first row, enter the formula in D1:
= Concatenate ("insert into table (col1, col2, col3) values ('", A1, "', '", B1, "', '", C1, "');")
3. At this time, D1 has generated the following SQL statement:
Insert into table (col1, col2, col3) values ('A', '11', '33 ');
4. Copy the D1 formula to column D of all rows (that is, use the mouse to hold the lower right corner of the D1 cell and drag it down)
5. All SQL statements have been generated in column D.
6th, copy the "D" column to a pure text file, and set it to "SQL .txt ".
You can run SQL .txt in the database by using the command line or phpadmin.