Right now when I export MYSQL tables to CSV files, I\'m getting \\N for NULL fields in the database which is expected. If there a way to change the \\N output to just an empty s
I also had this problem, solved as follows:
select ifnull(addr.reference, "") AS reference, data2 from ...
addr
reference