I have a csv file containg some data. And in my Sql Database I have a table with multiple column name. Now I want to update only one column by csv file. Thanks
You can try like this:
-Import the csv file to a temp table -Update your main table by joining with a temp table.