Home > Software engineering >  Load multiple data files into single sqlite database in python without merging the data files
Load multiple data files into single sqlite database in python without merging the data files

Time:02-10

I have 3 datafiles in csv format and the issue I am facing is how to insert the data from those 3 files (as 3 different tables) into a single SQLite database without merging them. I need 3 different tables because further I need to connect to this database and execute a nested query comprising of all this 3 tables.

CodePudding user response:

  •  Tags:  
  • Related