この記事の主な内容。mysql 列の一般的なコマンド:
テーブル列のプロパティを表示するdescribe table_name column_name
describe table_name column_name
show all column property查看所有列的属性
修改表的列属性 alter table modify
rename column重命名列
添加列(同时添加索引)、删除列
修改列的默认值
describe table_name column_name
很多时候我们需要查看列的详细详细,例如:
describe springdemo.blog title;
show fields from springdemo.blog;
查看所有列
修改表的列属性 alter table modify
修改表的字段名 alter table change
すべての列プロパティを表示するすべての列
テーブルの列属性を変更します alter table 変更
describe table_name column_name
🎜🎜🎜Many 場合によっては、列の詳細を表示する必要がある場合があります。例: 🎜alter table springdemo.tb_ms_audit_user_infoadd mal_report int default 0comment '恶意举报的次数', add index(mal_report);🎜🎜🎜すべての列プロパティを表示すべての列プロパティを表示🎜🎜
删除字段 : alter table <表名> drop <列名>🎜すべての列を表示🎜🎜🎜🎜テーブルの列属性を変更します alter table 🎜🎜テーブルの列属性を変更します alter table
以上がmysql カラムの一般的なコマンドの使用法の概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。