tags:

views:

33

answers:

1

The mysql prompt spits out column data in a messy format, is there a way to format it?

+3  A: 

You can get vertical output using mysql> select * from table \G.

Pierre-Antoine LaFayette