Which Of The Following Statement Is Used To Delete The Default #390
Which of the following statement is used to delete the DEFAULT constraint from a column in an existing column?
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 delete the DEFAULT constraint from a column in an existing column?
ALTER TABLE table_name ALTER DELETE DEFAULT;
ALTER TABLE table_name ALTER DROP DEFAULT;
ALTER TABLE table_name ALTER City DROP DEFAULT;
ALTER TABLE table_name ALTER City DELETE DEFAULT;