테이블 코멘트1 [Oracle] 테이블 create, 속성 보기와 comment하기 1. Create 문create table [schema].[table]( [col_nm] [type] [default ~] [not null] work_dt char(8) default to_char(sysdate, 'yyyyMMdd') not null, finish_yn char(1) not null, err_desc varchar(4000), create_dtm timestamp default sysdate not null) 2. 테이블 속성 보기desc [schema].[table]; 3. 테이블 Commentcomment on table [schema].[table] is 'table_nm'; -- table's commentcomment on column [schema].[table].[col.. 2024. 5. 22. 이전 1 다음