CBSE Class 12 Informatics Practices Question 101 of 103

Review of Database Concepts & SQL — Question 9

Back to all questions
9
Question

Question 9

Null (Unavailable and unknown) values are entered by the following command:

INSERT INTO TABLE NAME VALUES ("NULL") ;
Answer

False

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);.