「PostgreSQL」テーブル一覧を確認する方法

2021年9月6日

1.テーブルを確認

postgres=# \dt
          リレーションの一覧
 スキーマ | 名前 |    型    |  所有者
----------+------+----------+----------
 public   | empp | テーブル | postgres
(1 行)

2.システムカタログpg_tablesを確認

postgres=# select schemaname,tablename,tableowner from pg_tables;
     schemaname     |        tablename        | tableowner
--------------------+-------------------------+------------
 cfschema           | usetbl                  | postgres
 public             | empp                    | postgres

 

PostgreSQL

Posted by arkgame