CBSE Class 12 Informatics Practices
Question 101 of 103
Review of Database Concepts & SQL — Question 9
Back to all questionsFalse
Reason — The correct syntax for inserting a NULL value is : INSERT INTO TABLE_NAME VALUES (NULL, NULL, ...); or INSERT INTO TABLE_NAME (COLUMN_NAMES) VALUES (NULL);.