In MySQL there are two options for the SELECT INTO OUTFILE
command:
--fields-enclosed-by=char
--fields-optionally-enclosed-by=char
What's the basic difference in these two options?
Enclosed by means forcefully all fields are escaped by given char but what in case of optionally? How MySQL take care of this option ?
Thanks