向已有记录的现有表添加新的 NOT NULL 列
要向已创建的表中添加新的 NOT NULL 列,请使用 ALTER 命令。我们首先创建一个表 -
mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20) -> ); Query OK, 0 rows affected (0.60 sec)
以下是向现有表中添加新的 NOT NULL 列的查询 -
mysql> alter table DemoTable add column StudentAge int NOT NULL; Query OK, 0 rows affected (0.52 sec) Records: 0 Duplicates: 0 Warnings: 0
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable(StudentName,StudentAge) values('Chris',21); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('David',23); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('Mike',NULL); ERROR 1048 (23000): Column 'StudentAge' cannot be null
使用 select 语句显示表中的所有记录 -
mysql> select * from DemoTable;
这将产生以下输出 -
+-----------+-------------+------------+ | StudentId | StudentName | StudentAge | +-----------+-------------+------------+ | 1 | Chris | 21 | | 2 | David | 23 | +-----------+-------------+------------+ 2 rows in set (0.00 sec)
广告