Home  >  Article  >  Database  >  What happens when I insert the value "NULL" into an AUTO_INCRMENT MySQL column?

What happens when I insert the value "NULL" into an AUTO_INCRMENT MySQL column?

王林
王林forward
2023-09-17 14:45:03818browse

当我在 AUTO_INCRMENT MySQL 列中插入值“NULL”时会发生什么?

When we insert a NULL value into the AUTO_INCRMENT column, MySQL will return the sequence number.

Example

mysql> Create table employee(id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, Name Varchar(10));
Query OK, 0 rows affected (0.16 sec)

mysql> Insert into employee(id, Name) values(NULL, 'Gaurav');
Query OK, 1 row affected (0.07 sec)

mysql> Select * from employee;
+----+---------+
| id | Name    |
+----+---------+
| 1  | Gaurav  |
+----+---------+
1 row in set (0.00 sec)

The above is the detailed content of What happens when I insert the value "NULL" into an AUTO_INCRMENT MySQL column?. 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