[Oracle] Oracle 데이터베이스 에서 모든 표 와 필드, 표 주석 을 봅 니 다. 필드 주석
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.
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 열 을 포함 합 니 다:
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Oracle 생성 향후 3일간의 전체 시점 (단계 상세)수요: X 좌표축 시간은 모두 정시 시간으로 앞으로 3일 동안의 예측을 보여준다(x 축은 앞으로 3일 동안의 정시 시간을 보여준다), 3시간마다 한 눈금, 가로 좌표는 모두 24개의 눈금을 보여준다 1단계: 현재 시...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.