create table tb_name (
-> col1 type1 not null primary key,
-> col2 type2 not null primary key,
-> ...
-> colN typeN);
とすると、エラーとなりテーブルを作成できない。この場合は復号プライマリキーを設定する。
create table tb_name (
-> col1 type1 not null,
-> col2 type2 not null,
-> ...
-> colN typeN
-> primary key (col1, col2);