您需要从方案中的雇员表中删除EMP_FK_DEPT约束条件。应使用哪条语句()
第1题:
您需要从您的方案中的“雇员”表中删除“雇员_FK_部门”约束条件。应使用哪条语句?()
第2题:
创建“雇员”表时,可以使用哪个子句来确保薪金值大于或等于1000.00?()
第3题:
您在公司的数据库中成功创建了名为SALARY的表。您现在要通过向引用EMPLOYEES表的匹配列的SALARY表添加FOREIGNKEY约束条件来建立EMPLOYEES表与SALARY表之间的父/子关系。尚未向SALARY表添加任何数据。应执行以下哪条语句()
第4题:
删除PRIMARYKEY约束条件及其所有依赖约束条件的语法是什么()
第5题:
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()
第6题:
要删除“雇员标识序列”序列,应使用以下哪条语句()
第7题:
Which syntax turns an existing constraint on?()
第8题:
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?()
第9题:
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()
第10题:
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
第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雇员MODIFY COLUMN dept_id_fk FOREIGN KEY(部门标识)REFERENCES部门(部门标识)
ALTER TABLE雇员ADD CONSTRAINT dept_id_fk FOREIGNKEY(部门标识)REFERENCES部门(部门标识)
ALTER TABLE雇员ADD FOREIGN KEY CONSTRAINT dept_id_fk ON(部门标识)REFERENCES部门(部门标识)
ALTER TABLE雇员ADD FOREIGN KEY 部门(部门标识)REFERENCES(部门标识)
第13题:
应使用哪条语句删除“雇员”表的“姓氏”列上的“姓氏_IDX”索引?()
第14题:
SQL语句“ALTER TABLE雇员DELETE COLUMN薪金”是一个有效语句。
第15题:
要向雇员表中的部门标识列添加FOREIGNKEY约束条件以引用部门表中的标识列,应该使用哪个语句()
第16题:
Which syntax turns an existing constraint on?()
第17题:
您的主管让您修改ORDERS表中的AMOUNT列。他要求将该列配置为接受默认值250。该表包含您需要保留的数据。应执行以下哪条语句来完成此任务()
第18题:
以下SQL命令执行什么操作() ALTER TABLE employees ADD CONSTRAINT emp_manager_fk FOREIGN KEY(manager_id) REFERENCES employees(employee_id).
第19题:
Which statement adds a constraint that ensures the CUSTOMER_NAME column of the CUSTOMERS table holds a value?()
第20题:
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()
第21题:
DROP CONSTRAINT EMP_FK_DEPT FROM雇员
DELETE CONSTRAINT EMP_FK_DEPT FROM雇员
ALTER TABLE雇员DROP CONSTRAINT EMP_FK_DEPT
ALTER TABLE雇员REMOVE CONSTRAINT EMP_FK_DEPT
第22题:
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
第23题:
更改employees表并禁用emp_manager_fk约束条件
向EMPLOYEES表添加FOREIGN KEY约束条件,要求经理必须已是雇员
向EMPLOYEES表添加FOREIGN KEY约束条件,要求经理标识应匹配每个雇员标识
更改employees表并添加FOREIGN KEY约束,要求每个雇员标识必须唯一