单选题Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?()A DROP emp_dept_uv;B DELETE emp_dept_uv;C REMOVE emp_dept_uv;D DROP VIEW emp_dept_uv;E DELETE VIEW emp_dept_uv;F REMOVE VIEW emp_dept_uv;

题目
单选题
Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?()
A

DROP emp_dept_uv;

B

DELETE emp_dept_uv;

C

REMOVE emp_dept_uv;

D

DROP VIEW emp_dept_uv;

E

DELETE VIEW emp_dept_uv;

F

REMOVE VIEW emp_dept_uv;


相似考题
更多“单选题Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?()A DROP emp_dept_uv;B DELETE emp_dept_uv;C REMOVE emp_dept_uv;D DROP VIEW emp_dept_uv;E DELETE VIEW emp_dept_uv;F REMOVE VIEW emp_dept_uv;”相关问题
  • 第1题:

    根据SQL标准,删除索引应该选用下面哪个语句?()

    A DELETE INDEX

    B DROP INDEX

    C DELETE VIEW

    D DROP VIEW


    参考答案B

  • 第2题:

    删除视图stuvw的命令是( )。

    A)DROP stuvw

    C) DELETE stuvw

    B)DROP VIEW stuvw

    D)DELETE VIEW stuvw


    正确答案:B
    删除视图的命令是DROP VIEW视图名。

  • 第3题:

    )删除视图salary的命令是

    A) DROP VIEW salary

    B) DROP salary VIEW

    C) DELETE salary

    D) DELETE salaryVIEW


    正确答案:A
    【答案】:A
    【知识点】:删除视图的命令格式
    【解析】:SQL语句中,删除视图的格式为:DROP VIEW <视图名>,故选A。

  • 第4题:

    下列SQL的数据定义语句组中,哪一组是正确的?

    A.CREATE SCHEMA...,DROP SCHEMA…,ALTER SCHEMA…

    B.CREATE TABLE......,DROP TABLE....,ALTER TABLE....

    C.CREATE VIEW..:,DROP VIEW...,ALTER VIEW…

    D.CREATE INDEX...,DROP INDEX…,ALTER INDEX…


    正确答案:B

  • 第5题:

    删除视图stuvw的命令是( )。

    A)DROP stuvw

    B)DROPVIEW stuvw

    C)DELETE stuvw

    D)DELETE VIEW stuvw


    正确答案:B
    删除视图的命令是DROPVIEW视图名。

  • 第6题:

    在SQL中,视图的删除可以用()。

    • A、DELETE TABLE命令
    • B、DROP TABLE命令
    • C、DELETE VIEW命令
    • D、DROP VIEW命令

    正确答案:D

  • 第7题:

    Which version of a view would you use if you just want a quick, easy view within your XPage?()

    • A、Data Table Control
    • B、View Control
    • C、Repeat Control
    • D、Filter by category View Control

    正确答案:B

  • 第8题:

    You need to perform certain data manipulation operations through a view called EMP_DEPT_VU, which you previously created. You want to look at the definition of the view (the SELECT statement on which the view was created.) How do you obtain the definition of the view?()

    • A、Use the DESCRIBE command on the EMP_DEPT_VU view.
    • B、Use the DEFINE VIEW command on the EMP_DEPT_VU view.
    • C、Use the DESCRIBE VIEW command on the EMP_DEPT_VU view.
    • D、Query the USER_VIEWS data dictionary view to search for the EMP_DEPT_VU view.
    • E、Query the USER_SOURCE data dictionary view to search for the EMP_DEPT_VU view.
    • F、Query the USER_OBJECTS data dictionary view to search for the EMP_DEPT_VU view.

    正确答案:D

  • 第9题:

    You are granted the CREATE VIEW privilege. What does this allow you to do?()

    • A、Create a table view.
    • B、Create a view in any schema.
    • C、Create a view in your schema.
    • D、Create a sequence view in any schema.
    • E、Create a view that is accessible by everyone.
    • F、Create a view only of it is based on tables that you created.

    正确答案:C

  • 第10题:

    Your company uses SQL Server 2005. You are implementing a series of views that are used in ad hoc queries. The views are used to enforce your companys security policy of abstracting data.  Some of these views perform slowly. You create indexes on those views to increase performance, while still maintaining the companys security policy. One of the views returns the current date as one of the columns. The view returns the current date by using the GETDATE( ) function. This view does not allow you to create an index. You need to create an index on the view.  Which two actions should you perform?()

    • A、 Remove all deterministic function calls from within the view. 
    • B、 Remove all nondeterministic function calls from within the view. 
    • C、 Schema-bind all functions that are called from within the view. 
    • D、 Create the view and specify the WITH CHECK OPTION clause.

    正确答案:B,C

  • 第11题:

    单选题
    Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?()
    A

    DROP emp_dept_uv;

    B

    DELETE emp_dept_uv;

    C

    REMOVE emp_dept_uv;

    D

    DROP VIEW emp_dept_uv;

    E

    DELETE VIEW emp_dept_uv;

    F

    REMOVE VIEW emp_dept_uv;


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    Which version of a view would you use if you just want a quick, easy view within your XPage?()
    A

    Data Table Control

    B

    View Control

    C

    Repeat Control

    D

    Filter by category View Control


    正确答案: A
    解析: 暂无解析

  • 第13题:

    在SQL语言中,删除视图的语句是______。

    A.ALTER VIEW;

    B.DROP VIEW;

    C.ZAP VIEW;

    D.DELETE VIEW;


    正确答案:B

  • 第14题:

    删除视图salary的命令是 A) DROP salary VIEW B)DROP VIEW salary C)DELETE salary VIEW D)DELETE salary


    正确答案:B
    本题考查SQL中删除视图的命令.删除视图的命令格式为:
      DROP VIEW <视图名>
      故选项B为正确答案。

  • 第15题:

    删除视图myview的命令是( )。

    A.DELETE myview

    B.DELETE VIEW myview

    C.DROP VIEW myview

    D.REMOVE VIEW myview


    正确答案:C
    解析:视图由于是从表中派生出来的,所以不存在修改结构问题,但视图可以删除。删除视图的语法是:drop view视图名。

  • 第16题:

    在SQL中,删除视图用______。

    A、DROP SCHEMA命令 B、CREATE TABLE命令 C、DROP VIEW命令 D、DROP INDEX命令


    正确答案:C

  • 第17题:

    删除视图salary的命令是

    A.DROP salary VIEW

    B.DROP VIEW salary

    C.DELETE salary VIEW

    D.DELETE salary


    正确答案:B

  • 第18题:

    删除视图myview的命令是()

    • A、DELETE myview
    • B、DROP VIEW myview
    • C、DELETE myview VIEW
    • D、DROP myview VIEW

    正确答案:B

  • 第19题:

    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 manger_id NUMBER);
    • B、MODIFY VIEW EMP_dept_vu (ADD manger_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.

    正确答案:E

  • 第20题:

    You need to perform certain data manipulation operations through a view called EMP_DEPT_VU, which you previously created.You want to look at the definition of the view (the SELECT statement on which the view was create.) How do you obtain the definition of the view?()

    • A、Use the DESCRIBE command in the EMP_DEPT VU view.
    • B、Use the DEFINE VIEW command on the EMP_DEPT VU view.
    • C、Use the DESCRIBE VIEW command on the EMP_DEPT VU view.
    • D、Query the USER_VIEWS data dictionary view to search for the EMP_DEPT_VU view.
    • E、Query the USER_SOURCE data dictionary view to search for the EMP_DEPT_VU view.
    • F、Query the USER_OBJECTS data dictionary view to search for the EMP_DEPT_VU view.

    正确答案:D

  • 第21题:

    Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?()

    • A、DROP emp_dept_uv;
    • B、DELETE emp_dept_uv;
    • C、REMOVE emp_dept_uv;
    • D、DROP VIEW emp_dept_uv;
    • E、DELETE VIEW emp_dept_uv;
    • F、REMOVE VIEW emp_dept_uv;

    正确答案:D

  • 第22题:

    TestKing.com uses SQL Server 2005. You are implementing a series of views that are used in ad hoc queries. The views are used to enforce TestKing.coms security policy of abstracting data. Some of these views perform slowly. You create indexes on those views to increase performance, while still maintaining the company’s security policy. One of the views returns the current date as one of the columns. The view returns the current date by using the GETDATE() function. This view does not allow you to create an index. You need to create an index on the view. Which two actions should you perform?()

    • A、Remove all deterministic function calls from within the view.
    • B、Remove all nondeterministic function calls from within the view.
    • C、Schema-bind all functions that are called from within the view.
    • D、Create the view and specify the WITH CHECK OPTION clause.

    正确答案:B,C

  • 第23题:

    单选题
    You need to perform certain data manipulation operations through a view called EMP_DEPT_VU, which you previously created. You want to look at the definition of the view (the SELECT statement on which the view was create.) How do you obtain the definition of the view? ()
    A

    Use the DESCRIBE command in the EMP_DEPT VU view.

    B

    Use the DEFINE VIEW command on the EMP_DEPT VU view.

    C

    Use the DESCRIBE VIEW command on the EMP_DEPT VU view.

    D

    Query the USER_VIEWS data dictionary view to search for the EMP_DEPT_VU view.

    E

    Query the USER_SOURCE data dictionary view to search for the EMP_DEPT_VU view.

    F

    Query the USER_OBJECTS data dictionary view to search for the EMP_DEPT_VU view.


    正确答案: C
    解析: 暂无解析

  • 第24题:

    单选题
    You need to perform certain data manipulation operations through a view called EMP_DEPT_VU, which you previously created. You want to look at the definition of the view (the SELECT statement on which the view was created.) How do you obtain the definition of the view?()
    A

    Use the DESCRIBE command on the EMP_DEPT_VU view.

    B

    Use the DEFINE VIEW command on the EMP_DEPT_VU view.

    C

    Use the DESCRIBE VIEW command on the EMP_DEPT_VU view.

    D

    Query the USER_VIEWS data dictionary view to search for the EMP_DEPT_VU view.

    E

    Query the USER_SOURCE data dictionary view to search for the EMP_DEPT_VU view.

    F

    Query the USER_OBJECTS data dictionary view to search for the EMP_DEPT_VU view.


    正确答案: B
    解析: 暂无解析