方法: 1. 「alter table table name edit column column name dateType」ステートメントを使用してデータ型を変更します; 2. 「alter table table name change old columns name new column name type (length)」ステートメントを使用します。 " ステートメントを使用して名前を変更します。
このチュートリアルの動作環境: Windows10 システム、mysql8.0.22 バージョン、Dell G3 コンピューター。
1. フィールドのデータ型を変更します
alter table table_name modify column column_name dateType
例は次のとおりです:
#2. フィールド名を変更します##alter table table_name change old_column_name new_column_name int(11);
#知識を広げる:
#1. 一意のキーを追加します alter table table_name add unique key `uniq_column` (`column`);
2. フィールドを追加します
alter table table_name add column column_name datatype
3. フィールドを削除します
ALTER TABLE table_name DROP COLUMN column_name
4. 列を追加します
----alter table students add column 列名 列属性 alter table students add column 语文 varchar(4) NOT NULL ;
----デフォルトで列の最後に追加します
指定された列名の後に追加します
最初に最初の列に追加します
注: MySQL5.7.16 バージョンは Second、Third をサポートしていないようです...
# #alter table students add column 数学 varchar(4) NOT NULL after 出生日期 ;
5. 列の削除
----alter table 表名 drop column 列名 alter table students drop column 成绩;
推奨学習:
mysql ビデオ チュートリアル以上がmysqlでカラムを変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。