Is your feature request related to a problem? Please describe.
When columns contain large texts or blobs of JSON for example. I really like the \G statement terminator in MySQL that displays the columns as rows.
Describe the solution you'd like
Instead of ; use \G to terminate a query.
Showing results like
SELECT * FROM table LIMIT 3\G
*************************** 1. row ***************************
id: 1
json: {"a":"1"}
*************************** 2. row ***************************
id: 2
json: {"b":"2"}
*************************** 3. row ***************************
id: 3
json: {"c":"3"}
or even nicer like the columns are formatted now.
Is your feature request related to a problem? Please describe.
When columns contain large texts or blobs of JSON for example. I really like the \G statement terminator in MySQL that displays the columns as rows.
Describe the solution you'd like
Instead of ; use \G to terminate a query.
Showing results like
or even nicer like the columns are formatted now.