I'm on a localhost, with root access.
I get the following error:
Error Code: 1. Can't create/write to file 'C:\Users\mypath\full customer table.csv' (Errcode: 13 - Permission denied)
This is the code:
select * from customer
into OUTFILE 'C:/Users/mypath/full customer table.csv'
fields terminated by ',';
Have tried granting privileges but to no avail:
GRANT All privileges ON *.* TO 'root'@'localhost';