目次
PostgreSQL で、 SELECT クエリ を発行して取得したカラムの値を縦に並べて表示する方法です。
環境
- PostgreSQL 9.3
方法
\x
コマンド を実行してから SELECT クエリ を実行すると、 結果が縦に表示されます。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
=> \x => select * from users limit 1; -[ RECORD 1 ]----------------------+------------------------------------------------------------- id | 1142 login | login_code name | Taro email | taro@taro.com encrypted_password | $2a$10$TeCGAIfFYIZeARvvSByli.HcihGMiD9AhagF4RvPMwlUOYxl6Nhr6 remember_token | remember_created_at | created_at | 2017-11-28 15:56:17.30237 updated_at | 2018-02-11 17:30:29.429387 authentication_token | pDLRszpnnHFq9+ceGSp4Gs8kNA7LEkviaVMH/8iXg3w= |
\x
コマンド
\?
コマンド を実行して \x
の説明を表示すると、 toggle expanded output
という説明が表示されます。 縦表示のことを Expand output というんですね。