Oracle、MySQLコメントの追加(comment)


Oracleコメントの追加(comment)
Oracleデータベースでは、フィールドまたは列のコメントは属性コメントで追加されます.
1.テーブルにコメントを追加するには:
Comment on tableテーブル名is‘テーブルのコメント内容’;
インスタンスコードは次のとおりです.
 comment on table user is '   ';

2.テーブルのフィールドにコメントを追加するには、次の手順に従います.
comment on column表名フィールド名is「フィールドコメント」;
インスタンスコードは次のとおりです.
comment on column user.username is '          ';

MySQLコメント追加(コメント)
MySQLデータベースでは、フィールドまたはカラムのコメントもプロパティコメントで追加されます.
1.新しいテーブルを作成するスクリプトで、フィールド定義スクリプトにコメント属性を追加してコメントを追加できます.
インスタンスコードは次のとおりです.
create table test( 
    id int not null default 0 comment '  id' )

2.既に作成されているテーブルであれば、フィールドを変更するコマンドを使用してコメント属性定義を付けることもできます.
インスタンスコードは次のとおりです.
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