Hello friends, ilts a newbie question.. Is it possible to convert database on spread sheet into msql? If yes how hard is it? Can a newbie do it? ANy help will be highly appreciated
I think you cannot find a script to export directly to mysql syntax... but you can export in text file and after that to import directly in mysql. To export in text File use http://bioinformatics.uams.edu/micr...ols/Excel2text/ If you want to import a csv to mysql try to use : http://www.stadtaus.com/php_scripts...ysql_script.php Also is very easy to import a csv in mysql diretcly from mysql command line or froma a query shell: LOAD DATA LOCAL INFILE '/tmp/csv.file' INTO TABLE `table` FIELDS TERMINATED BY ',' ESCAPED BY '\\' LINES TERMINATED BY '\r\n' For that csv.file need to be on server. Regards
It's really pretty easy. 1. Open your excel file 2. Save as .csv 3. Open up you PhpMyAdmin 4. Go to the table you want to import into 5. Click the "Insert data from a textfile into table" link at the bottom