Command Line of mysql is not displaying results properly. I mean some columns of table are in 1st line some in 2nd line. Output is also broken into two rows. How do I adjust the
You can use the \G command (instead of the ;) at the end of your SQL queries...
\G
;
Example:
SELECT * FROM USER \G
It will display your table in row form instead of column form.