Which Of The Following Statement Is Used To Apply The Deafult #388
Which of the following statement is used to apply the DEAFULT constraint to a column 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 Default Constraint - Quiz No.1.
Which of the following statement is used to apply the DEAFULT constraint to a column in SQL?
CREATE TABLE table_name DEFAULT ( column1 datatype value, column2 datatype value, ... columnn datatype value);
CREATE TABLE table_name ( column1 datatype, column2 datatype, ... columnn datatype DEFAULT (column1, column2,… columnn) value);
CREATE TABLE table_name ( DEFAULT column1 datatype value, DEFAULT column2 datatype value, ... DEFAULT columnn datatype value);
CREATE TABLE table_name ( column1 datatype DEFAULT value, column2 datatype DEFAULT value, ... columnn datatype DEAFULT value);