ALTER TABLE table_name ENABLE constraint_name;
ALTER TABLE table_name STATUS = ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name STATUS ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name TURN ON CONSTRAINT constraint_name;
第1题:
以下()语句从表TABLE_NAME中提取前10条记录。
第2题:
Which syntax turns an existing constraint on?()
第3题:
您需要从方案中的雇员表中删除EMP_FK_DEPT约束条件。应使用哪条语句()
第4题:
以下()语句从表TABLE_NAME中提取前10条记录。
第5题:
Which statement adds a constraint that ensures the CUSTOMER_NAME column of the CUSTOMERS table holds a value?()
第6题:
You need to modify the STUDENTS table to add a primary key on the STUDENT_ID column. The table is currently empty. Which statement accomplishes this task?()
第7题:
Examine the following statement that is used to modify the constraint on the SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE VALIDATE; Which three statements are true regarding the above command()
第8题:
ALTER TABLE table_name ENABLE constraint_name;
ALTER TABLE table_name STATUS = ENABLE CONSTRAINT constraint _ name;
ALTER TABLE table_name ENABLE CONSTRAINT constraint _ name;
ALTER TABLE table_name TURN ON CONSTRAINT constraint _ name;
第9题:
select * from table_name where 1<=2
truncate table table_name
delete from table_name where null=null
alter table table_name add column idd int
第10题:
select*from TABLE_NAME where rowcount=10
selectTOP 10*from TABLE_NAME
selectTOPof 10*from TABLE_NAME
select*from TABLE_NAME wherer owcount<=10
第11题:
It fails if any existing row violates the constraint.
It does not validate the existing data in the table.
It enables the constraint to be enforced at the end of each transaction.
It prevents insert, update, and delete operations on the table while the constraint is in the process of being enabled.
第12题:
ALTER TABLE table_name ENABLE constraint_name;
ALTER TABLE table_name STATUS = ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name STATUS ENABLE CONSTRAINT constraint_name;
ALTER TABLE table_name TURN ON CONSTRAINT constraint_name;
第13题:
删除PRIMARYKEY约束条件及其所有依赖约束条件的语法是什么()
第14题:
A constraint in a table is defined with the INITIALLY IMMEDIATE clause. You executed the ALTER TABLEcommand with the ENABLE VALIDATE option to enable the constraint that was disabled. What are the twoeffects of this command()
第15题:
如下能正确执行的语句是()
第16题:
Which syntax turns an existing constraint on?()
第17题:
You need to modify the STUDENTS table to add a primary key on the STUDENT_ID column. The table is currently empty.Which statement accomplishes this task?()
第18题:
Which statement explicitly names a constraint?()
第19题:
Examine the following statement that is used to modify the primary key constraint on the SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE VALIDATE; Which three statements aretrue regarding the above command()
第20题:
ALTER TABLE table_name DROP CONSTRAINT constraint_name CASCADE
ALTER TABLE table_name DROP CONSTRAINT FOREIGN KEY CASCADE
DROP CONSTRAINT table_name(constraint_name)
ALTER TABLE table_name DROP CONSTRAINT constraint_name
第21题:
It fails if any existing row violates the constraint.
It does not validate the existing data in the table.
It enables the constraint to be enforced at the end of each transaction.
It prevents insert, update, and delete operations on the table while the constraint is in the process of beingenabled
第22题:
The constraint remains valid.
The index on the constraint is dropped.
It allows the loading of data into the table using SQL *Loader.
New data conforms to the constraint, but existing data is not checked.
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL statements.
第23题:
select * from TABLE_NAME where rowcount=10
select TOP 10 * from TABLE_NAME
select TOP of 10 * from TABLE_NAME
select * from TABLE_NAME where rowcount<=10
第24题:
The constraint remains valid.
The index on the constraint is dropped.
It allows the loading of data into the table using SQL*Loader.
New data conforms to the constraint, but existing data is not checked
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL statements.