查看一个数据表的 约束
select table_name,constraint_name,constraint_type from user_constraints
where table_name='大写的表名'
只查看表中的索引
select * from USER_INDEXES where table_name = '大写的表名'
查看一个数据表的 约束
select table_name,constraint_name,constraint_type from user_constraints
where table_name='大写的表名'
只查看表中的索引
select * from USER_INDEXES where table_name = '大写的表名'