Export your excel to .csv using Save As option in MySQL and then import .csv file to MySQL using phpmyadmin.
But phpmyadmin request "column1 quot; column2 quot; ......" format. Example: I want to import 2 excel columns to 2 sql columns. How to import?
Use navicat. You can import directly from an excel file, csv file or just abount any other text format you would come across. - http://www.navicat.com/
Try the new tool DBConvert for Excel & MySQL at http://dbconvert.com/downloads/dbconvert_excel_mysql.zip
You can also use Excel's concatenate function to build Insert statements. You build an Insert statement for the first row and then copy/paste it down the rest of the spreadsheet to generate the rest of the inserts. Example: Concatenate("INSERT INTO table (column1, column2, column3) VALUES ('", A1, "','", B1, "','" , C1, "');") -Jim