Issue
I have about 8000 records in an Excel file and wish to add them to a MySQL table. I need to know the quickest way to populate the table.
Solution
Save the Excel worksheet as a .CSV file, and use the MySQL LOAD DATA
statement to read the .CSV file and insert rows to a table. That's the quickest.
Answered By - spencer7593
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.