I am trying to import data from a csv file into a mysql database by means of the following code
LOAD DATA INFILE 'direccion del archivo' INTO TABLE nombre_tabla
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n';
But when I run it, I get the following message
the used command is not allowed with this mysql version
I'm using MYSQL WORKBENCH