查表的主键语句
862次浏览
编辑于2017年04月17日 12:58:36
select cu.* from user_cons_columns cu, user_constraints au
where cu.constraint_name = au.constraint_name
and au.constraint_type = 'P' and au.table_name = '表名' --表名需要大写
where cu.constraint_name = au.constraint_name
and au.constraint_type = 'P' and au.table_name = '表名' --表名需要大写
推荐阅读