当前位置:1Z0-007题库

问题:

[单选]

You created a view called EMP_DEPT_VU that contains three columns from the EMPLOYEES and DEPARTMENTS tables:
EMPLOYEE_ID, EMPLOYEE_NAME AND DEPARTMENT_NAME.
The DEPARTMENT_ID column of the EMPLOYEES table is the foreign key to the primary key DEPARTMENT_ID column of the DEPARTMENTS table.
You want to modify the view by adding a fourth column, MANAGER_ID of NUMBER data type from the EMPLOYEES tables.
How can you accomplish this task?()

A . ALTER VIEW emp_dept_vu (ADD manager_id NUMBER);
B . MODIFY VIEW emp_dept_vu (ADD manager_id NUMBER);
C . ALTER VIEW emp_dept_vu AS SELECT employee_id, employee_name, department_name, manager_id FROM employee e, departments d WHERE e.department_id = d.department_id;
D . MODIFY VIEW emp_dept_vu AS SELECT employee_id, employee_name, department_name, manager_id FROM employees e, departments d WHERE e.department_id = d.department_id;
E . CREATE OR REPLACE VIEW emp_dept_vu AS SELECT employee_id, employee_name, department_name, manager_id FROM employees e, departments d WHERE e.department_id = d.department_id;
F . You must remove the existing view first, and then run the CREATE VIEW command with a new column list to modify a view.

Which code fragment, inserted at line 24, outputs "123abc 123abc"?() sb1.append("abc"); s1.append("abc");。 sb1.append("abc"); s1.concat("abc");。 sb1.concat("abc"); s1.append("abc");。 sb1.concat("abc"); s1.concat("abc");。 sb1.append("abc"); s1=s1.concat("abc");。 sb1.concat("abc"); s1=s1.concat("abc");。 编制城市公共交通的行车作业计划是,行车人员用餐时间的安排方法有:增加劳动力的方法、增加车辆来代替用餐停驶的车辆、(),用拉大行车间隔的方法来挤出用餐时间。10、三级调度机构的三个层次分别是公司总调度室、车场调度室、车队调度组. 影响学前儿童游戏的个体环境因素有() 父母教养方式。 性别差异。 年龄差异。 个性差异。 健康和情绪等其他个体偶然因素的差异。 Which three methods can you use to run an Automatic Database Diagnostic Monitor (ADDM) analysis over a specific time period?()  Enterprise Manager GUI。  DBMS_TRACE package APIs。  DBMS_ADVISOR package APIs。  DBMS_MONITOR package APIs。  $ORACLE_HOME/rdbms/admin/addmrpt.sql script。 个人死亡的,记入基本养老保险个人账户的余额可以继承。

You created a view called EMP_DEPT_VU that contains three columns from the EMPLOYEES and DEPARTMENTS tables:
EMPLOYEE_ID, EMPLOYEE_NAME AND DEPARTMENT_NAME.
The DEPARTMENT_ID column of the EMPLOYEES table is the foreign key to the primary key DEPARTMENT_ID column of the DEPARTMENTS table.
You want to modify the view by adding a fourth column, MANAGER_ID of NUMBER data type from the EMPLOYEES tables.
How can you accomplish this task?()

参考答案:

  参考解析

本题暂无解析

在线 客服