複合プライマリーキー制約 CREATE TABLE example (
a integer,
b integer,
c integer,
PRIMARY KEY (a, c)
);
参考https://www.postgresql.org/docs/current/static/ddl-constraints.html |
|
複合プライマリーキー制約 CREATE TABLE example (
a integer,
b integer,
c integer,
PRIMARY KEY (a, c)
);
参考https://www.postgresql.org/docs/current/static/ddl-constraints.html |
|