MySQL Extended Display

mysql

Solution

Append `\G` to the end of the statement instead of the semicolon:

`SELECT * FROM table_name [WHERE condition] \G`

Problem

Is there any equivalent to psql's \x to view a record with each column on a new row?

Original source