The concept is on uploading a csv file the old table should be deleted and the new file should replace the old data I'm using nodejs in it I have written two queries
TRUNCATE TABLE test
then the second query for updating the table is
UPDATE test SET
t1 = replace(t1,"")
,t2 = replace(t2,"")
,t3 = replace(t3,"")
,t4 = replace(t4,"")
My dummy csv file also have same 4 columns t1,t2,t3,t4 of datatype var char
while executing Im getting the error
error: zero-length delimited identifier at or near """"
please correct me if the query is wrong