sql >> データベース >  >> RDS >> PostgreSQL

PostgreSQLテーブルの主キーを変更します

    私はしばらく時間をかけて、ついに実用的な解決策を思いつきました。

    今後の参考のためにここに公開します。

    ソリューション

    まず、3つのテーブル(foo_table)があります 、bar_tablebaz_tableusersを指しています 外部キー(user_idと呼ばれる)を使用したテーブル すべての場合)。これらの列に保存されているIDをidから置き換える必要があります another_idへ 。方法は次のとおりです。

    -- We are dropping the foreign key constraint on dependant table (in other case it will prevent us from updating the values)
    ALTER TABLE foo_table DROP CONSTRAINT fk_e52ffdeea76ed395;
    
    -- Then, we're swapping values in foreign key column from id to another_id
    UPDATE foo_table T SET user_id = (SELECT another_id FROM users WHERE id = T.user_id);
    
    -- And finally we're creating new foreign key constraint pointing to the another_id instead of id
    ALTER TABLE foo_table ADD CONSTRAINT fk_e52ffdeea76ed395 FOREIGN KEY (user_id) REFERENCES users (another_id) ON DELETE CASCADE;
    

    依存テーブルごとに上記のクエリを繰り返す必要があります。

    その後、すべての依存テーブルは新しいanother_idを指します。 列。

    最終的には、主キーを置き換える必要があります:

    -- 1. Dropping the original primary key
    ALTER TABLE users DROP CONSTRAINT users_pkey
    
    -- 2. Renaming existing index for another_id (optional)
    ALTER INDEX uniq_1483a5e93414710b RENAME TO users_pkey
    
    -- 3. Creating new primary key using existing index for another_id
    ALTER TABLE users ADD PRIMARY KEY USING INDEX users_pkey
    
    -- 4. Creating index for old id column (optional)
    CREATE UNIQUE INDEX users_id ON users (id)
    
    -- 5. You can drop the original sequence generator if you won't need it
    DROP SEQUENCE users_id_seq
    

    元のidを削除することもできます 必要に応じて列。

    誰かのお役に立てば幸いです。




    1. OracleSQLPIVOTテーブル

    2. INSERTクエリを使用して、あるテーブルから別のテーブルに行をコピーします

    3. SQLServerで大文字を含む行を見つける5つの方法

    4. データベースが空(テーブルなし)かどうかを確認するSQL