Oracle查询--增加--删除--修改主键
时间:2021-07-01 10:21:17
帮助过:4人阅读
查询某个表中存在的约束*/
select * from user_constraints
where table_name
=‘表名大写‘;
查询结果显示约束类型,约束名称,不显示约束在哪个字段上
/*查询某个表各字段约束*/
select * from user_cons_columns
where table_name
=‘表名大写‘;
查询结果显示约束名称,字段名称,不显示约束类型
/*查询某个表的主键约束*/
select A.column_name,A.constraint_name
from user_cons_columns A,user_constraints B
where A.constraint_name
=B.constraint_name
and A.table_name
=‘表名大写‘ and B.constraint_type
=‘P‘;
查询结果显示列名,约束名。‘P‘表示primary
Key,
‘C‘表示check,此处constraint_type
=‘P‘
2、增加主键
alter table 表名 add constraint 主键名 primary key(列名);
3、删除主键
/*主键,在查询处可以获得*/
alter table 表名 drop constraint 主键
4、修改主键
oracle不能直接修改主键,通过删除已有主键再增加,达到修改的目的
Oracle查询--增加--删除--修改主键
标签:不能 style 通过 span 大写 drop rop div code