I connect to mysql from my Linux shell and use something like this:
SELECT * FROM students INTO OUTFILE '/tmp/students'.
- Why do I see - \Nat line endings? I want each record in a row, but why do I see the- \Nexplicitly printed?
- How can I print all column headers in the first row?