mysql データベースのテーブル構造を変更する方法: 1. テーブル構造を表示する; 2. 列を追加する; 3. 列を削除する、コードは [mysql> alter table students drop column Birthday]; 4. 変更する列の場合、コードは【mysql> alter table】です。
このチュートリアルの動作環境: Windows 7 システム、mysql バージョン 8.0.22、thinkpad t480 コンピューター。
関連する無料学習の推奨事項: mysql データベース(ビデオ)
##Mysql の変更データベース テーブル構造の方法:
1. テーブル構造の表示mysql> show create table student; +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | student | CREATE TABLE `student` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `NAME` varchar(20) NOT NULL, `AGE` int(11) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 | +---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.09 sec)2. 列の追加
mysql> alter table student add column birthday datetime; Query OK, 0 rows affected (2.06 sec) Records: 0 Duplicates: 0 Warnings: 03. 列の削除
mysql> alter table student drop column birthday; Query OK, 0 rows affected (0.80 sec) Records: 0 Duplicates: 0 Warnings: 04.列
--1.修改列的类型 mysql> alter table student modify age int not null; Query OK, 0 rows affected (0.09 sec) Records: 0 Duplicates: 0 Warnings: 0 --2.修改列的名称 mysql> alter table student change column name sname varchar(20); Query OK, 0 rows affected (1.31 sec) Records: 0 Duplicates: 0 Warnings: 0
関連する無料学習の推奨事項を変更します:
以上がmysqlデータベースのテーブル構造を変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。