Home  >  Article  >  Database  >  How can we apply NOT NULL constraint to a column of an existing MySQL table?

How can we apply NOT NULL constraint to a column of an existing MySQL table?

王林
王林forward
2023-09-05 23:53:02637browse

我们如何将 NOT NULL 约束应用于现有 MySQL 表的列?

#We can apply NOT NULL constraints to columns of existing MySQL tables with the help of ALTER TABLE statement.

Grammar

ALTER TABLE table_name MODIFY colum_name datatype NOT NULL; 

Example

mysql> Create table test123(ID INT, Date DATE);
Query OK, 0 rows affected (0.19 sec)

mysql> Describe test123;

+-------+---------+------+-----+---------+-------+
| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| ID    | int(11) | YES  |     | NULL    |       |
| Date  | date    | YES  |     | NULL    |       |
+-------+---------+------+-----+---------+-------+
2 rows in set (0.04 sec)

mysql> ALTER TABLE test123 MODIFY ID INT NOT NULL;
Query OK, 0 rows affected (0.54 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> Describe test123;
+-------+---------+------+-----+---------+-------+
| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| ID    | int(11) | NO   |     | NULL    |       |
| Date  | date    | YES  |     | NULL    |       |
+-------+---------+------+-----+---------+-------+
2 rows in set (0.06 sec)

The above is the detailed content of How can we apply NOT NULL constraint to a column of an existing MySQL table?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete