0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PostgreSQLで作成したtableの一意に識別する値を取り出す

Last updated at Posted at 2020-04-24

#結論

select relname,oid from pg_class 
where relname not like 'pg_%'
and relname not like 'sql_%' 
and relkind='r';

#経緯
javaの掲示板を作成中、作成したtableの作成日時を取得したかった。
が、簡単には取得できそうになかったから、別の方法を模索。
結果、pg_classという、
DB内のテーブルやインデックスのメタ情報を管理するテーブルを使うことにした。
これにより、各テーブル固有の値を取得できた。

参考サイト
https://www.postgresql.jp/document/9.4/html/catalog-pg-class.html

#詳細
・relname:テーブルとかの名前
・oid:テーブル固有の値。重複しない。
・relkind:テーブルはr,インデックスはi、シーケンスはs、みたいな感じで識別。

これらを使い、自分が作成したテーブル固有の値とその名前だけを抽出することに成功した。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?