I need to import data into csv. I do this using LOAD INFILE.
In these CSVs, the value is in a comma-like format, for example, "1938.20".
To import in this case, I import as varchar and then transform with REPLACE (VALUE, ',', '.').
I wanted to know if it is possible to do the transformation at the time of importing the data.