Với tư cách là người dùng sở hữu bảng, bạn có thể làm:
select constraint_name, status, deferrable, deferred, validated, generated
from user_constraints
where constraint_type = 'P' and table_name = 'Table Name'
Cập nhật:Tôi nghĩ điều này mang lại cho bạn những gì bạn cần.
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
Bạn có thể kiểm tra điều này trang web để biết thêm chi tiết.