MySQL データベースでは、フィールドまたは列のコメントは属性 comment を使用して追加されます。
推奨コース: MySQL チュートリアル
##新しいテーブルを作成するスクリプトでは、
フィールド定義スクリプトに comment 属性を追加することで、コメントを追加できます。 サンプル コードは次のとおりです。create table test( id int not null default 0 comment '用户id' )
テーブルがすでに構築されている場合は、コマンドを使用してフィールドを変更することもできます。をクリックし、コメント属性定義を追加すると、コメントを追加できます。
サンプル コードは次のとおりです。
alter table test change column id id int not null default 0 comment '测试表id'
既存のテーブルのすべてのフィールドのコメントを表示してみてはいかがでしょうか?
コマンドを使用できます: show full columns from tablename to view, 例は次のとおりです:show full columns from test;1. テーブルの作成時にコメントを記述します。
create table test1 ( field_name int comment '字段的注释' )comment='表的注释';2. テーブル コメントの変更
alter table test1 comment '修改后的表的注释';3. フィールド コメントの変更
alter table test1 modify column field_name int comment '修改后的字段注释'; --注意:字段名和字段类型照写就行4. テーブル コメントの表示方法
--在生成的SQL语句中看 show create table test1; --在元数据的表里面看 use information_schema; select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G5. 表示方法フィールドコメント
--show show full columns from test1; --在元数据的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TAB
以上がmysqlコメントの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。