I have a MySQL table that is populated by CSV input from a local folder. I create the CSV by exporting an Excel sheet to .txt format, add the comma delimiter, and change the encoding to UTF-8 because I was getting errors before when inserting a CSV directly exported from Excel.
Question is: Is it possible to skip the steps of manually changing the exported CSV file to TXT and encode it to an UTF-8 file? The goal I have in mind is to export an UTF-8 CSV directly from Excel - or maybe with a script - into a folder.
Thanks for the answers.