Remove quotes in awk command
Using double quotes as the field separator;
awk -F'"' '{print "set", $4, "\""$6"\""}' testme.csv
You can use gsub function:
awk -F',' '{gsub(/"/, "", $2); print "set", $2, $3}' testme.csv
set 1211274723 "0"
set 1211292921 "0"
set 1211295793 "0"
set 1211310146 "0"
set 1211310310 "0"
set 1211315271 "0"
set 1211318203 "0"
set 1211323658 "0"
set 1211329224 "0"
set 1211330064 "0"