oracle 数据字典

查询某户下所有表

 

 

select table_name from all_tables where owner='SCOTT';

 

  

 

查询 E M P 表中所有段(列)

 

 

select * from all_tab_columns where table_name='EMP';

 

 

列出表索引列


Oracle 教程


 

 

select * from sys.all_ind_columns where table_name='EMP';

select        *        from        sys.all_ind_columns        where upper(table_name)='CAREUSERHAM';

 

列出表约束

 

 

select * from all_constraints where table_name='EMP'

 

 

oracle 描述数据典视图

 

 

select table_name ,comments from dictionary where table_name like '%TABLE%';

你可能感兴趣的:(oracle,C++,c,C#,F#)