欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Oracle 基础

程序员文章站 2022-05-08 19:40:50
...

删除了约束,索引还在,本来就是借用的索引????? 这句话,,我无从理解,, 语句是这样的,, SQL create table t (id int, name char(10)); insert into t values (1, 'sohu'); SQL create index t_idx on t(id); alter table t add constraint pk_id

删除了约束,索引还在,本来就是借用的索引?????

这句话,,我无从理解,,

语句是这样的,,

SQL>
create table t (id int, name char(10));
insert into t values (1, 'sohu');

SQL> create index t_idx on t(id);

alter table t add constraint pk_id primary key (id);

alter table t drop constraint pk_id;//为什么 删除了约束,索引还在 。又为什么 借用的索引