I've tried to find this in the MySQL reference, and done some online searches, but I cant find any reference to this issue:
select NAME from DPLENV;
+------+
| NAME |
+------+
| BAR |
| FOO |
+------+
2 rows in set (0.00 sec)
I want the output formatted so that the header line (with the column name in) and the feedback, (2 rows...) are removed, and I am left _only_ with the values selected from the table.
In Oracle, for example, I would use 'set header OFF' and 'set feedback OFF' to achieve the same. Is there an equivalent in mySQL?
Any ideas?
Christian