通过约束名获取表名

发布于 2024-10-20 19:33:58 字数 45 浏览 2 评论 0原文

Oracle 约束名称已知。

如何找到应用此约束的表的名称?

Oracle constraint name is known.

How do I find the name of the table for which this constraint is applied?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

橙幽之幻 2024-10-27 19:33:58
SELECT owner, table_name
  FROM dba_constraints
 WHERE constraint_name = <<your constraint name>>

会给你表的名称。如果您无权访问 DBA_CONSTRAINTS 视图,ALL_CONSTRAINTSUSER_CONSTRAINTS 也应该可以使用。

SELECT owner, table_name
  FROM dba_constraints
 WHERE constraint_name = <<your constraint name>>

will give you the name of the table. If you don't have access to the DBA_CONSTRAINTS view, ALL_CONSTRAINTS or USER_CONSTRAINTS should work as well.

吹泡泡o 2024-10-27 19:33:58

ALL_CONSTRAINTS 描述当前用户可访问的表的约束定义。

DBA_CONSTRAINTS 描述数据库中的所有约束定义。

USER_CONSTRAINTS 描述当前用户架构中表的约束定义

Select CONSTRAINT_NAME,CONSTRAINT_TYPE ,TABLE_NAME ,STATUS from 
USER_CONSTRAINTS;

ALL_CONSTRAINTS describes constraint definitions on tables accessible to the current user.

DBA_CONSTRAINTS describes all constraint definitions in the database.

USER_CONSTRAINTS describes constraint definitions on tables in the current user's schema

Select CONSTRAINT_NAME,CONSTRAINT_TYPE ,TABLE_NAME ,STATUS from 
USER_CONSTRAINTS;
疾风者 2024-10-27 19:33:58
SELECT constraint_name, constraint_type, column_name
from user_constraints natural join user_cons_columns
where table_name = "my_table_name";

会给你你需要的

SELECT constraint_name, constraint_type, column_name
from user_constraints natural join user_cons_columns
where table_name = "my_table_name";

will give you what you need

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文