阅读量:0
要查看表的主键和索查,你可以使用以下SQL语句:
- 查看表的主键:
SELECT cols.column_name, cols.position, cons.constraint_name FROM all_constraints cons JOIN all_cons_columns cols ON cons.constraint_name = cols.constraint_name WHERE cons.constraint_type = 'P' AND cols.table_name = 'your_table_name';
- 查看表的索引:
SELECT index_name, column_name, column_position FROM all_ind_columns WHERE table_name = 'your_table_name';
请将your_table_name
替换为要查看的表名。