如何在 Oracle 中获取主键列?

2021-12-06 00:00:00 oracle

我需要获取主键列的名称.

I need to get the name of the primary key column.

在输入中,我只有表名.

In the input, I only have the 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;

确保 'TABLE_NAME' 是大写的,因为 Oracle 以大写形式存储表名.

Make sure that 'TABLE_NAME' is in upper case since Oracle stores table names in upper case.

相关文章