2
Hello, I have a table 'x', with the column Value, in DECIMAL, in a Mysql 9 database.
It turns out I need to import data in csv. I do this using LOAD INFILE.
In these Csvs, the value is in comma format, for example, "1938.20".
To import in this case, I care how to scan and then transform with REPLACE(VALUE, ',', '.').
I wanted to know if it is already possible to make the transformation when importing the data.