码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 主键、联合主键的查询与创建

时间:2014-09-04 14:37:59      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   on   c   ad   type   oracle   table   bs   

--查询某个表是否有唯一主键

select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = ‘P‘ and au.table_name =‘表名‘

--查询某个表是否有联合主键

select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = ‘U‘ and au.table_name =‘表名‘

 

--创建唯一主键

alter table 表名 add constraint pk_table primary key(id); --pk_table 是指 主键的名称,而括号里的 id是指表的唯一主键

 

--创建联合主键

alter table 表名 add constraint ak_table unique(name,age,sex); --ak_table 是指 联合主键的名称,而括号里的 name,age,sex是指表的联合主键

Oracle 主键、联合主键的查询与创建

标签:ar   sp   on   c   ad   type   oracle   table   bs   

原文地址:http://www.cnblogs.com/ser0632/p/3955918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!