Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* 複合プライマリーキー制約 [#tf356dac]
CREATE TABLE example (
a integer,
b integer,
c integer,
PRIMARY KEY (a, c)
);
- カラムaとカラムbは自動的にNOT NULL制約に
** 参考 [#i81d303f]
https://www.postgresql.org/docs/current/static/ddl-constr...
終了行:
* 複合プライマリーキー制約 [#tf356dac]
CREATE TABLE example (
a integer,
b integer,
c integer,
PRIMARY KEY (a, c)
);
- カラムaとカラムbは自動的にNOT NULL制約に
** 参考 [#i81d303f]
https://www.postgresql.org/docs/current/static/ddl-constr...
ページ名: