VIEW_PK

CREATE OR REPLACE VIEW VIEW_PK AS
SELECT t.table_name 表名,t.column_name 主键列 FROM User_Cons_Columns t, User_Constraints t2

where t.constraint_name=t2.constraint_name and t.table_name=t2.table_name and t2.constraint_type='P'

原文地址:https://www.cnblogs.com/threestone/p/1769193.html