I am trying to run this query
LOAD DATA CONCURRENT INFILE 'C:\\Data-API.csv' INTO TABLE pbp_person
FIELDS TERMINATED BY '\t' ENCLOSED BY '"' LINES TERMINATED BY '\r\n' IGNORE 1 LINES
(email, first_name, last_name, title, company_name, address, city, state, zip, country, phone, vertical);
but I get an error saying....
SQL Error(29) File 'C:\Data-API.csv' not found (Errcode:2)
The file is in the right place; what's happening?