[Oracle] Oracle 데이터베이스 에서 모든 표 와 필드, 표 주석 을 봅 니 다. 필드 주석

1. 리스트 가 져 오기:
select table_name from user_tables; //        
select table_name from all_tables; //      
select table_name from dba_tables; //     
select table_name from dba_tables where owner='   '
ALL_OBJECTS      describes all objects accessible to the current user.                     
DBA_OBJECTS     describes all objects in the database.                                         
USER_OBJECTS    describes all objects owned by the current user.                       
  • user_tables:TABLE_NAME,TABLESPACE_NAME,LAST_ANALYZED 등
  • dba_tables:ower,table_name,tablespace_name,last_분석 등
  • all_tables:ower,table_name,tablespace_name,last_분석 등
  • all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time, timestamp, status 등
  • 2. 표 필드 가 져 오기:
    select * from user_tab_columns where Table_Name='   ';
    select * from all_tab_columns where Table_Name='   ';
    select * from dba_tab_columns where Table_Name='   ';

    3. 표 주석 가 져 오기:
    user_tab_comments;   
    select * from user_tab_comments

    user_tab_comments:table_name,table_type, comments 에 해당 하 는 dbatab_comments,all_tab_comments, 이 두 개 는 usertab_comments 에 ower 열 이 많아 졌 습 니 다.
    4. 필드 설명 가 져 오기:
    select * from user_col_comments
    user_col_comments:table_name,column_name,comments

    그 에 상응하는 것 은 dbacol_comments,all_col_comments, 이 두 개 는 usercol_comments 에 ower 열 이 많아 졌 습 니 다.
    user_col_comments;표 필드 주석 (열 주석) USERCOL_COMMENTS 보 기 는 표 의 열 에 입력 한 주석 을 표시 합 니 다.이 설명 들 은 comment 명령 을 통 해 데이터베이스 에 추 가 됩 니 다.USER_COL_COMMENTS 보 기 는 3 열 을 포함 합 니 다:
  • Table_Name 표 이름 또는 보기 이름
  • Column_이름 열 이름
  • Comments 가 이 열 에 입력 한 주석
  • 좋은 웹페이지 즐겨찾기