पहले वेरिएबल को पढ़ा गया मान असाइन करें, फिर उस वेरिएबल पर काम करें। इसके लिए आप अपनी गंतव्य तालिका के कॉलम निर्दिष्ट करते हैं, लेकिन उस कॉलम के बजाय एक चर निर्दिष्ट करते हैं जहां आप बदलना चाहते हैं।
load data local infile 'C:/filepath.../All_Data.csv'
replace into table all_data
fields terminated by ','
enclosed by '"'
escaped by '"'
lines terminated by "\r\n"
ignore 1 rows
(column_1, column_2, @variable1, @variable2, column_5)
set
Avg_Daily_Visitors = replace(@variable1,"\N",0),
pageviews = replace(@variable2,"\N", 0)
;