我正致力于创建复合主数据库。我想在创建表时将属性组合作为主键。我正在使用Oracle 10g数据库和SQL作为查询语言。
答案 0 :(得分:3)
create table foo
(
col_one integer not null,
col_two integer not null,
some_other_column varchar(100) not null,
constraint pk_foo primary key (col_one, col_two)
);
手册中的更多细节和示例: