Quite often all of us have to get the data from some Excel table and to fill into MySql database. There is not implemented such standard converting features both on MS Excel and MySql server.
In this tutorial I will show you How to Import Excel XLS file into MySql database.
To done this task, the user has several variants.
First method is no so smart but is very simple and clear method. User have to parse the data is suitable columns. One column for each filed in the data base. Also in front of each value, in each column have to be placed ' symbol and at the end have to be place ', symbol combination. In the last column, each row have to be ended with '); symbol combination. Next have to be inserted one column foremost of all. And in each row have to enter: INSERTO INTO `TABLE` (`field1`, `field2`, `fieldN`) VALUES( . Next this have to be saved like normal text file and copy & paste in MySql console or PhpMyAdmin SQL command field.
Yes. I know that this is very dump method, but long time age this was helpful for me.


