I have created a database in sql server. It has three tables. I have three csv files for these tables(all the csv files are in same folder). Data format is same in both csv and db table.
Currently I am using SQL Server Import and Export Wizard to load data from csv files. But in this way I can only insert data into one table. I have to repeat the same task multiple times.
Is there any way to insert data into multiple table from multiple csv files in single query?
Thanks