* Oliver Heinisch
> Is there a way to supress headers and to get the datafields
> without spaces?
> (in one result there has been a TAB (0x09) between the fields).
> I just want data_field_1 (0x20) data_field_2 (\n).

You can use the --skip-column-names parameter when calling the mysql client
to avoid column names, and the CONCAT() function to create whatever output
you want:

     SELECT CONCAT(data_field_1,' ',data_field_2) FROM table;

--
Roger


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to