通过
搜索摸索,总结了一下oracle中
查询表的信息,
包括表名,字段名,字段类型,主键,外键唯一性约束信息,索引信息
查询sql如下,希望对大家有所帮助: 1、
查询出所有的
用户表 select * from user_tables 可以
查询出所有的
用户表 select owner,table_name from all_tables;
查询所有表,
包括其他
用户表 通过表名过滤需要将字母作如下处理 select * from user_tables where table_name = upper('表名') 因为无论你建立表的时候表名名字是大写还是小写的,create语句执行通过之后,对应的user_tables表中的table_name字段都会
自动变为大写字母,所以必须通过内置
函数upper将字符串转化为大写字母进行
查询,否则,即使建表语句执行通过之后,通过上面的
查询语句仍然
查询不到对应的记录。 2、
查询出
用户所有表的索引 select * from user_indexes 3、
查询用户表的索引(非聚集索引): select * from user_indexes where uniqueness='NONUNIQUE' 4、
查询用户表的主键(聚集索引): select * from user_indexes where uniqueness='UNIQUE' 5、
查询表的索引 select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name='NODE' 6、
查询表的主键 select cu.* from user_cons_columns cu,user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = 'P' AND cu.table_name = 'NODE' 7、查找表的唯一性约束(
包括名称,构成列): select column_name from user_cons_columns cu,user_constraints au where cu.constraint_name=au.constraint_name and cu.table_name='NODE' 8、查找表的外键 select * from user_constraints c where c.constraint_type = 'R' and c.table_name='STAFFPOSITION'
查询外键约束的列名: select * from user_cons_columns cl where cl.constraint_name = 外键
名称 查询引用表的键的列名: select * from user_cons_columns cl where cl.constraint_name = 外键引用表的键名 9、
查询表的所有列及其
属性 方法一: select * from user_tab_columns where table_name=upper('表名');
方法二: select cname,coltype,width from col where tname=upper('表名');; 10.
查询一个
用户中存在的过程和
函数 select object_name,created,status from user_objects where lower(object_type) in ('procedure','function'); 11.
查询其它角色表的权限 select * from role_tab_privs ;
原文链接:https://www.f2er.com/oracle/210474.html