Which Of The Following Statement Can Be Used To Apply The #389
Which of the following statement can be used to apply the DEFAULT constraint on a column in an existing table?
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 can be used to apply the DEFAULT constraint on a column in an existing table?
ALTER TABLE table_name ALTER column_name SET DEFAULT value;
ALTER TABLE table_name ALTER column_name DEFAULT value;
ALTER TABLE table_name column_name SET DEFAULT value;
ALTER TABLE table_name CHANGE column_name SET DEFAULT value;