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
As stated by the MySQL Documentation you can do this
LOAD DATA INFILE 'mycsvdata.csv' INTO TABLE mytable ( @csvfield1, @csvfield2 ) SET myTabField = @csvfield2;