I am running the following statement to import data:
LOAD DATA LOCAL INFILE 'C:\\Users\\talkohavy\\Desktop\\MySQL_data\\categories.csv'
INTO TABLE BI_EX_OLTP.categories
FIELDS TERMINATED BY ','
IGNORE 1 LINES;
And then I get this error:
error code 1148. the used command is not allowed with this mysql version.
How can I enable loading local data using the MySql Workbench and not the cmd?