CBSE Class 12 Computer Science Question 85 of 91

Relational Database and SQL — Question 5

Back to all questions
5
Question

Question 5

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_NAME) VALUES (NULL);