向已有記錄的現有表新增新的 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)

更新於: 26-02-2020

207 次瀏覽

開始你的 職業生涯

透過完成課程獲取認證

開始
廣告
© . All rights reserved.