I am trying to load a CSV file into a database table.. I absolutely am 100% sure this file path is correct and I have verified it one hundred times. Despite this, when I run this sql query, it tells me the file path is wrong.
Is the file path it is requesting special in any case? I assume to use my root pathing..
LOAD DATA LOCAL INFILE '/var/www/html/wordpress/cron/members.csv' INTO TABLE members_copy FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n';