I'm doing a SELECT INTO OUTFILE and it's showing a "\N" for every NULL value. Is there any way for me to make it just be blank instead?
SELECT INTO OUTFILE
NULL
I'm on MySQL.
You can use the COALESCE function something like this:
COALESCE
COALESCE(yourfield, '')