在oracle中查询表之间外键的执行语句怎么写?
select * from user_constraints c where c.constraint_type = 'R' and c.table_name = 要查询的表 。
查询外键约束的列名: select * from user_cons_columns cl where cl.constraint_name = 外键名称
查询引用表的键的列名: select * from user_cons_columns cl where cl.constraint_name = 外键引用表的键名
查询表的所有列及其属性 select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name = c.table_name and t.column_name = c.column_name and t.table_name = 要查询的表。
甲骨文股份有限公司(Oracle)是全球大型数据库软件公司,总部位于美国加州红木城的红木岸。在2008年,甲骨文股份有限公司是继Microsoft及IBM后,全球收入第三多的软件公司。
Oracle数据库产品为财富排行榜上的前1000家公司所采用,许多大型网站也选用了Oracle系统。甲骨文股份有限公司于1989年正式进入中国,在北京、上海、广州和成都均设立了分支机构。