0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PostgreSQLでの別スキーマへのテーブルコピーのやり方

Posted at

最近別スキーマにテーブルコピーして、検証環境を作ることがあるので、よく使うテーブルコピーのコマンドをメモしておきます。

テーブルコピーのやり方。
INCLUDING ALLによってテーブル定義などがコピーできる。
とくに、シーケンスを一緒にもっていく必要がある場合重要。

CREATE TABLE コピー先スキーマ名.テーブル名 (LIKE コピー元スキーマ.テーブル名 INCLUDING ALL)

データの移行方法。
当たり前だが、WHERE句に条件を設定すれば、直近1年分だけ移行などもできた。

INSERT INTO コピー先スキーマ名.テーブル名 SELECT * FROM コピー元スキーマ.テーブル名
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?