Oracle, MySQL 주석 추가(comment)

Oracle 주석 추가(comment)
Oracle 데이터베이스에서 필드나 열의 주석은 속성comment로 추가됩니다.
1. 테이블에 주석을 추가합니다.
comment on table 테이블 이름 is'테이블의 주석 내용';
인스턴스 코드는 다음과 같습니다.
 comment on table user is '   ';

2. 테이블의 필드에 주석을 추가합니다.
comment on column 테이블 이름.필드 이름 is'필드 주석';
인스턴스 코드는 다음과 같습니다.
comment on column user.username is '          ';

MySQL 주석 추가(comment)
MySQL 데이터베이스에서 필드나 열의 주석도 속성comment로 추가됩니다.
1. 새 테이블을 만드는 스크립트에서 필드 정의 스크립트에comment 속성을 추가하여 주석을 추가할 수 있습니다.
인스턴스 코드는 다음과 같습니다.
create table test( 
    id int not null default 0 comment '  id' )

2. 작성된 테이블이라면 필드를 수정하는 명령을 사용하고comment 속성 정의를 추가하면 주석을 추가할 수 있습니다
인스턴스 코드는 다음과 같습니다.
alter table test 
change column id id int not null default 0 comment '   id'

이미 테이블이 있는 모든 필드의 주석을 보시겠습니까?명령:show full columns from table을 사용하여 다음과 같이 볼 수 있습니다.
show full columns from test;

표를 만들 때 주석을 씁니다
create table test1 ( 
    field_name int comment '     ' 
)comment='    '; 

테이블 주석 수정하기
alter table test1 comment '        ';

필드에 대한 주석 수정
alter table test1 modify column field_name int comment '        '; 

--  :            

테이블 주석 보기 방법
--    SQL     
    show  create  table  test1; 
--         
    use information_schema; 
    select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G

필드 주석 보기 방법
--show 
    show  full  columns  from  test1; 
--          
    select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G

좋은 웹페이지 즐겨찾기