2
3

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 5 years have passed since last update.

Sequel Proで複合プライマリキーを設定した際のエラー「Multiple primary key defined」の対処法

Last updated at Posted at 2018-07-10

MySQL(MariaDB)に対し、Sequel Proで複数のカラムをプライマリキーとして設定すると以下のエラーが発生する場合があります。

err
Multiple primary key defined

対処法

「CREATE TABLE」で設定する場合

sql
CREATE TABLE TBL_TEST (
    item001 INTEGER NOT NULL,
    item002 INTEGER NOT NULL,
    PRIMARY KEY(item001, item002)
);

「ALTER TABLE」で設定する場合(主キーを追加する場合)

手順1:テーブルのインデックスを削除する。 ※テーブルのプライマリキーも削除されます。
image.png

手順2:以下のフォーマットで「ALTER TABLE」を実行する。

sql
ALTER TABLE TBL_TEST ADD CONSTRAINT PRIMARY KEY(item001, imte002);
2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?