「Linux」PostgreSQLの使い方メモ
1.postgresユーザに切り替える
# su – postgres
-bash-4.2$ psql
2.database一覧の表示
postgres=# \l
3.databaseの選択
postgres=# \c testdb
4.table一覧の表示
postgres=#\dt;
5.table構造の表示
postgres=#\d test_tbl;
6.テーブル内のデータを一覧
select * from test_tbl;