Which Of The Following Statement Is Used To Apply The Not Null #355
Which of the following statement is used to apply the NOT NULL constraint?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Constraints - SQL Not Null - Quiz No.1.
Which of the following statement is used to apply the NOT NULL constraint?
CREATE TABLE table_name ( column1 data_type NOT NULL, column2 data_type NOT NULL, ... columnn data_type NOT NULL);
CREATE TABLE table_name ( NOT NULL column1 data_type, NOT NULL column2 data_type, ... NOT NULL columnn data_type);
CREATE TABLE table_name ( column1 data_type, column2 data_type, ... columnn data_type, NOT NULL (column1, column2,..., columnn));
CREATE TABLE table_name NOT NULL ( column1 data_type, column2 data_type, ... columnn data_type);