Is there a way by which I can import an excel workbook which has multiple sheets to mysql database into multiple tables?
Which means, lets say
I have an excel workbook with 3 sheets named sheet1, sheet2 sheet3. Headers for each sheet is on the first row. Now I need these 3 sheets to be stored as 3 tables (sheet, sheet2, sheet3) in the database.
Is there a way to do this using phpmyadmin, php, python or any other?
I know, we can import individual csv sheets. I want to know if batch import works or not