relational database I need to import multiple csv files, over 100, into a sqlite database. I was told using Python to achieve this would be one of the simplest and most efficient ways to do this. These csv files are surveys that contain around 75 questions(rows) on them with answers from about 30 different people(columns). There may be some differences or added questions between the surveys.
I have searched and found examples of creating a database to import a single CSV file but couldn't find much on importing many.
Is python the way to go with creating a database to hold each of the surveys. I am not even sure where to begin with this as I have never used python or sqlite3 so any help is appreciated.