Import CSV with missing columns into MS SQL Server table – Asp.net
Suppose I got a csv file like this: field1 field3 0 1 1 2 The corresponding table looks like this: field1 field2 field3 null null null ... ... ... Suppose all the fields are nullable, how could I import the…