Sử dụng từ khóa DEFAULT trong MySQL để đặt giá trị mặc định thành NULL. Trước tiên, hãy để chúng tôi tạo -
mysql> create table DemoTable1440 -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20) DEFAULT NULL, -> StudentAge int DEFAULT NULL -> ); Query OK, 0 rows affected (0.55 sec)
Chèn một số bản ghi trong bảng bằng lệnh chèn. Đối với các giá trị để trống, giá trị mặc định sẽ được chèn -
mysql> insert into DemoTable1440(StudentName,StudentAge) values('Chris',21); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1440 values(); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable1440(StudentName) values('David'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1440(StudentAge) values(24); Query OK, 1 row affected (0.09 sec)
Hiển thị tất cả các bản ghi từ bảng bằng select -
mysql> select * from DemoTable1440;
Điều này sẽ tạo ra kết quả sau -
+-----------+-------------+------------+ | StudentId | StudentName | StudentAge | +-----------+-------------+------------+ | 1 | Chris | 21 | | 2 | NULL | NULL | | 3 | David | NULL | | 4 | NULL | 24 | +-----------+-------------+------------+ 4 rows in set (0.00 sec)