I'm trying to upload excel sheet data to MySQL for that Can anyone suggest to me on how to import excel file import to MySQL DB / give an example/ link on I'm using express and Node.js?
Asked
Active
Viewed 825 times
0
-
1Does this answer your question? [Import Data From Excel To MySql With Node JS](https://stackoverflow.com/questions/51257265/import-data-from-excel-to-mysql-with-node-js) – Fourier Dec 20 '19 at 14:40
1 Answers
0
You'd want to convert the excel data to a csv
Convert XLS to CSV on the server in Node
Then you can import that csv data file into mysql.

Tanner
- 720
- 1
- 8
- 17
-
I wanted to import using UI. Your suggestion is without UI I'm using ejs template for import. – Sohan Haspula Dec 20 '19 at 14:08