Insert NULL to a NOT NULL column : Insert : Insert Update Delete MySQL TUTORIALS


MySQL TUTORIALS » Insert Update Delete » Insert »

 

Insert NULL to a NOT NULL column


mysql>
mysql> CREATE TABLE myTable(
    ->    ID SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    ->    Name VARCHAR(50NOT NULL
    -> );
Query OK, rows affected (0.01 sec)

mysql>
mysql>
mysql> INSERT INTO myTable (ID, Name)VALUES (NULL, 'Ain't ');
Query OK, row affected (0.02 sec)

mysql>
mysql> select from myTable;
+----+--------+
| ID | Name   |
+----+--------+
|  | Ain't  |
+----+--------+
row in set (0.00 sec)

mysql>
mysql> drop table myTable;
Query OK, rows affected (0.00 sec)

mysql>
mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Insert Update Delete
» Insert