psql kann hübsche Unicode Tabellen erzeugen, dazu legt man einfach eine ~/.psqlrc Datei an mit folgendem Inhalt:
\pset border 2 \pset linestyle unicode
Das Ergebnis sieht dann so aus:
Line style is unicode. puppetdb=# SELECT * FROM value_types; ┌────┬─────────┐ │ id │ type │ ├────┼─────────┤ │ 0 │ string │ │ 1 │ integer │ │ 2 │ float │ │ 3 │ boolean │ │ 4 │ null │ │ 5 │ json │ └────┴─────────┘ (6 rows) puppetdb=#
Vorher:
puppetdb=# SELECT * FROM value_types LIMIT 10; id | type ----+--------- 0 | string 1 | integer 2 | float 3 | boolean 4 | null 5 | json (6 rows) puppetdb=#