gpt4 book ai didi

sql - 如何在oracle 11g中查询主键

转载 作者:行者123 更新时间:2023-12-03 03:11:33 26 4
gpt4 key购买 nike

有人知道如何在 Oracle 11g 中查询表的主键吗?我看到了有关 SQL Server 的类似问题,但我没有尝试在该线程上找到答案。

谢谢!

最佳答案

作为拥有该表的用户,您可以执行以下操作:

select constraint_name, status, deferrable, deferred, validated, generated 
from user_constraints
where constraint_type = 'P' and table_name = 'Table Name'

更新:我认为这可以满足您的需求。

SELECT cols.table_name, cols.column_name, cols.position, cons.status, cons.owner
FROM all_constraints cons, all_cons_columns cols
WHERE cols.table_name = 'Table Name'
AND cons.constraint_type = 'P'
AND cons.constraint_name = cols.constraint_name
AND cons.owner = cols.owner
ORDER BY cols.table_name, cols.position

您可以查看this网站了解更多详情。

关于sql - 如何在oracle 11g中查询主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5353522/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com