How to turn on the expanded table formatting mode in PostgreSQL
Note: The following was tested with PostgreSQL 13.1
Default setting: \x off
$ psql myblog_dev
myblog_dev=# SELECT "users".* FROM "users" WHERE "users"."role" = 10 LIMIT 1;
The output format would be:
It was difficult to read the result.
Turn on th...
lynnbright.com2 min read