When we insert a NULL value into the AUTO_INCRMENT column, MySQL will return the sequence number.
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!