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?
mysql
Append `\G` to the end of the statement instead of the semicolon:
`SELECT * FROM table_name [WHERE condition] \G`
Is there any equivalent to psql's \x to view a record with each column on a new row?