oracle 表添加主键 primary key

根据数据库三范式就是每个表建议要有主键,每个字段不可再分,表与之间不存在部分依赖,数据库的优化首先考虑的也是主键,主键会在对应的字段加唯一约束、加not null,建 索引, 演示如何在oracle创建PK主键,及主键使用反转索引。

怎么为表加主键呢

1,建表同时

SQL> create table test13 (id int primary key);

Table created.

,