Problem
When doing a query in MySQL you would like to display the results vertically instead of horizontally as they are much more readable.
Solution
Terminate the query with \G instead of a semicolon (MySQL documentation):
SELECT * FROM users\G
Problem
When doing a query in MySQL you would like to display the results vertically instead of horizontally as they are much more readable.
Solution
Terminate the query with \G instead of a semicolon (MySQL documentation):
SELECT * FROM users\G