Which Of The Following Statement Can Be Used To Apply Column #350
Which of the following statement can be used to apply column level constraints to a table in SQL?
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 Constraints - Quiz No.1.
Which of the following statement can be used to apply column level constraints to a table in SQL?
CREATE TABLE table_name( column1 data_type(size) constraint, column2 data_type(size) constraint, ... columnn data_type(size) constraint);
CREATE TABLE table_name( constraint column1 data_type(size), constraint column2 data_type(size), ... constraint columnn data_type(size));
CREATE TABLE table_name ( column1 data_type(size), column2 data_type(size), ... columnn data_type(size), constraint (column1,column2…columnn));
CREATE TABLE table_name( column1 data_type(size), column2 data_type(size), ... columnn data_type(size));