oracle 中查看一张表是不是有主键,主键在哪个字段上的语句怎么查如要查aa表,请写两句分别回答
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 中查看一张表是不是有主键,主键在哪个字段上的语句怎么查如要查aa表,请写两句分别回答相关的知识,希望对你有一定的参考价值。
select a.constraint_name, a.column_namefrom user_cons_columns a, user_constraints b
where a.constraint_name = b.constraint_name
and b.constraint_type = 'P'
and a.table_name = 'AA'-------大写
查看AA表的主键约束名称,以及主键约束的字段名称。
如果没有,则返回空 参考技术A SQL> select owner,constraint_name,CONSTRAINT_TYPE,table_name from user_constraints;
OWNER CONSTRAINT_NAME C TABLE_NAME
------------------------------ ------------------------------ - -----------------------
SCOTT PK_DEPT P DEPT
SCOTT PK_EMP P EMP
SCOTT FK_DEPTNO R EMP
oracle怎么查看外键在哪个表
有时候删除某张表记录的时候,会报错外键约束不能删除。如果不了解表之间的关系,可以通过以下语句查询到外键是建在哪张表上的:
select * from dba_constraints where constraint_name=\'xxx\' and constraint_type = \'R\';
例如:我的程序日志中报如下错误,我要知道外键是在那个表上.
2015-09-08
18:28:18 [ main:261597003 ] - [ ERROR ] java.sql.SQLException:
ORA-02291: 违反完整约束条件 (IRP.FK66EC57AF5158B9FB) - 未找到父项关键字
select * from dba_constraints where constraint_name=\'FK66EC57AF5158B9FB\' and constraint_type = \'R\';
例如:
执行delete from tablename时报错:
ORA-02292: integrity constraint (CCSYS.FK_T_BME_TASKRUNRESULT_TASKID) violated - child record found
可以通过执行
select table_name from dba_constraints where constraint_name=\'FK_T_BME_TASKRUNRESULT_TASKID\' and constraint_type = \'R\';
查询出外键是建在T_BME_TASKRUNRESULT表上的,先把T_BME_TASKRUNRESULT表删除,就可以删除 t_bme_task表记录了。 参考技术A 如果不了解表之间的关系,可以通过以下语句查询到外键是建在哪张表上的:
select * from dba_constraints where constraint_name='xxx' and constraint_type = 'R';
例如:我的程序日志中报如下错误,我要知道外键是在那个表上.
2015-09-0818:28:18 [ main:261597003 ] - [ ERROR ] java.sql.SQLException:
ORA-02291: 违反完整约束条件 (IRP.FK66EC57AF5158B9FB) - 未找到父项关键字
select * from dba_constraints where constraint_name='FK66EC57AF5158B9FB' and constraint_type = 'R';本回答被提问者采纳
以上是关于oracle 中查看一张表是不是有主键,主键在哪个字段上的语句怎么查如要查aa表,请写两句分别回答的主要内容,如果未能解决你的问题,请参考以下文章