In Sql Which Of The Following Statement Can Be Used To Add A #342
In SQL, which of the following statement can be used to add a constraint in an existing table using the ALTER command?
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 Database - SQL Alter Table - Quiz No.1.
In SQL, which of the following statement can be used to add a constraint in an existing table using the ALTER command?
ALTER TABLE table_name ADD CONSTRAINT constraint_name (condition/column_name);
ALTER TABLE table_name ADD CONSTRAINT constraint_name constraint_type (condition/column_name);
ALTER TABLE table_name ADD CONSTRAINT constraint_type (condition/column_name);
ALTER TABLE table_name ADD constraint_name constraint_type (condition/column_name);