Using this to import data from excel to tables of database.... But i am getting this error
I need some ones help
(comments are locked)
|
|
AFAIK, this is the syntax for MSSQL not for MySQL. For MySQL you would have to either export the excel file to text file and then import Or search it over the internet, you may find some better alternative or free tools.
(comments are locked)
|
|
Usman is right, there doesn't seem to be a direct native method for import from Excel format into MySQL, you need to save as CSV or text. There is a worked example at http://blog.tjitjing.com/index.php/2008/02/import-excel-data-into-mysql-in-5-easy.html which runs through all the necessary steps using load data infile. The Manual has some more detail at http://dev.mysql.com/doc/refman/5.6/en/load-data.html, including some potentially relevant comments at the bottom.
(comments are locked)
|

