参考答案和解析
正确答案: 一种是以用户交互式联机使用,另一种为宿主型SQL,即将SQL语句陷入到高级语言程序中使用。
更多“SQL的使用方法。”相关问题
  • 第1题:

    首先提出支持面向对象数据模型的SQL标准是(37)。

    A.SQL86

    B.SQL89

    C.SQL92

    D.SQL99


    正确答案:D
    解析:从SQL99开始引入面向对象数据模型,之前的标准都是完全针对关系模型,故选项D正确。

  • 第2题:

    我国制定的SQL国家标准(GB12911),等效于国际标准的________。

    A.SQL89

    B.SQL92

    C.SQL3

    D.SQL2


    正确答案:A
    解析:我国制定的SQL国家标准(GB12911),等效于国际SQL标准的SQL89。

  • 第3题:

    看板的使用方法主要以下()等。

    A工序内看板的使用方法。

    B信号看板的使用方法。

    C工序间看板的使用方法。

    D外协看板的使用方法。


    A,B,C,D

  • 第4题:

    密语的组成主要是由()。

    • A、明语、密钥、使用方法
    • B、数码、字码、使用方法
    • C、明语、数码、混合码
    • D、使用方法、字码、明语

    正确答案:A

  • 第5题:

    SQL语言的使用方法有()。

    • A、自含式SQL
    • B、解释式SQL
    • C、嵌入式SQL
    • D、多用户SQL

    正确答案:A,C

  • 第6题:

    在VisualFoxPro中,“查询设计器”的选项卡与语句()相对应。

    • A、SQL SELECT
    • B、SQL ALSERT
    • C、SQL UPDATE
    • D、SQL DROP

    正确答案:A

  • 第7题:

    What happens when you run the SQL Tuning Advisor with limited scope?()

    • A、Access path analysis is not performed for SQL statements.
    • B、SQL structure analysis is not performed for SQL statements.
    • C、SQL Profile recommendations are not generated for SQL statements.
    • D、Staleness and absence of statistics are not checked for the objects in the SQL Tuning Advisor. In this case, SQL Tuning Advisor produces recommendations based on statistical checks, access path analysis, and SQL structure analysis. SQL profile recommendations are not generated.

    正确答案:B,C

  • 第8题:

    判断题
    SQL语言有嵌入式和交互式两种使用方法。(  )
    A

    B


    正确答案:
    解析:

  • 第9题:

    单选题
    You are a database administrator for your company. The company has two SQL Server 2005 computers named SQL1 and SQL2. SQL1 is located on the local network. SQL2 is located at a vendors site and is connected by using a VPN over the Internet. You need to write heterogeneous queries on SQL1 that access data from both SQL1 and SQL2. To ensure that your queries are functional, you must configure access to the vendors site. What should you do?()
    A

    Configure an HTTP endpoint for SQL2 on SQL1.

    B

    Configure SQL2 as a linked server on SQL1.

    C

    Configure an HTTP endpoint for SQL1 on SQL2.

    D

    Configure SQL1 as a linked server on SQL2.


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

  • 第10题:

    问答题
    SQL语言中提供了哪些数据控制(自主存取控制)的语句?请试举几例说明它们的使用方法。

    正确答案: SQL中的自主存取控制是通过GRANT语句和REVOKE语句来实现的。如:
    GRANTSELECT,INSERTONStudent
    TO王平
    WITHGRANTOPTION;
    就将Student表的SELECT和INSERT权限授予了用户王平,后面的“WITHGRANTOPTION”子句表示用户王平同时也获得了“授权”的权限,即可以把得到的权限继续授予其他用户。
    REVOKEINSERTONStudentFROM王平CASCADE;
    就将Student表的INSERT权限从用户王平处收回,选项CASCADE表示,如果用户王平将Student的INSERT权限又转授给了其他用户,那么这些权限也将从其他用户处收回。
    解析: 暂无解析

  • 第11题:

    单选题
    Which statement correctly describes SQL and /SQL*Plus?()
    A

    Both SQL and /SQL*plus allow manipulation of values in the database.

    B

    /SQL* Plus recognizes SQL satement and sends them to the server; SQL is the Oracle proprietary interface for executing SQL statements.

    C

    /SQL* Plus language for communicating with the Oracle server to access data; SQL recognizes SQL statements and sends them to the server.

    D

    /SQL manipulates data and table definition in the database; /SQL* Plus does not allow manipulation of values in the database.


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

  • 第12题:

    单选题
    当前最新的SQL语言是()。
    A

    ANSI SQL-99

    B

    ANSI SQL

    C

    ANSI SQL-95

    D

    Transact-SQL


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

  • 第13题:

    在哪里可以查看SQL Server 2008中的当前日志()。

    A.SQL Server Management Studio中的安全性——SQL Server日志

    B.SQL Server Management Studio中的数据库——SQL Server日志

    C.SQL Server Management Studio中的管理——SQL Server日志

    D.SQL Server Management Studio中的管理——维护计划


    参考答案:C

  • 第14题:

    保安员在固定岗位值勤时,应掌握( )。

    A:对讲机的使用方法

    B:灭火器的使用方法

    C:消防设备的位置和使用方法

    D:楼宇对讲的使用方法


    正确答案:C

  • 第15题:

    当前最新的SQL语言是()。

    • A、ANSI SQL-99
    • B、ANSI SQL
    • C、ANSI SQL-95
    • D、Transact-SQL

    正确答案:A

  • 第16题:

    关于PL/SQL说法错误的是()。

    • A、PL/SQL是达梦数据库的过程化语言
    • B、PL/SQL并不能支持所有的SQL数据类型和SQL函数
    • C、包括一整套的数据类型、条件结构、循环结构和异常处理结构
    • D、PL/SQL可以执行SQL语句,SQL语句中也可以使用PL/SQL函数

    正确答案:B

  • 第17题:

    Which statement correctly describes SQL and /SQL*Plus?()

    • A、Both SQL and /SQL*plus allow manipulation of values in the database.
    • B、/SQL* Plus recognizes SQL satement and sends them to the server; SQL is the Oracle proprietary interface for executing SQL statements.
    • C、/SQL* Plus language for communicating with the Oracle server to access data; SQL recognizes SQL statements and sends them to the server.
    • D、/SQL manipulates data and table definition in the database; /SQL* Plus does not allow manipulation of values in the database.

    正确答案:A

  • 第18题:

    SQL语言中提供了哪些数据控制(自主存取控制)的语句?请试举几例说明它们的使用方法。


    正确答案: SQL中的自主存取控制是通过GRANT语句和REVOKE语句来实现的。如:
    GRANTSELECT,INSERTONStudent
    TO王平
    WITHGRANTOPTION;
    就将Student表的SELECT和INSERT权限授予了用户王平,后面的“WITHGRANTOPTION”子句表示用户王平同时也获得了“授权”的权限,即可以把得到的权限继续授予其他用户。
    REVOKEINSERTONStudentFROM王平CASCADE;
    就将Student表的INSERT权限从用户王平处收回,选项CASCADE表示,如果用户王平将Student的INSERT权限又转授给了其他用户,那么这些权限也将从其他用户处收回。

  • 第19题:

    下列关于PL/SQL的说法正确的是()

    • A、PL/SQL是应用于各种数据库上的通用语言
    • B、PL/SQL是过程化的SQL语言
    • C、PL/SQL是只能在SQL*PLUS中运行
    • D、在PL/SQL可以直接执行所有的SQL操作

    正确答案:B

  • 第20题:

    名词解释题
    SQL的使用方法。

    正确答案: 一种是以用户交互式联机使用,另一种为宿主型SQL,即将SQL语句陷入到高级语言程序中使用。
    解析: 暂无解析

  • 第21题:

    单选题
    保安员在固定岗位值勤时,应掌握()。
    A

    对讲机的使用方法

    B

    灭火器的使用方法

    C

    消防设备的位臵和使用方法

    D

    楼宇对讲的使用方法


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

  • 第22题:

    多选题
    SQL语言的使用方法有()。
    A

    自含式SQL

    B

    解释式SQL

    C

    嵌入式SQL

    D

    多用户SQL


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

  • 第23题:

    单选题
    下列关于PL/SQL的说法正确的是()
    A

    PL/SQL是应用于各种数据库上的通用语言

    B

    PL/SQL是过程化的SQL语言

    C

    PL/SQL是只能在SQL*PLUS中运行

    D

    在PL/SQL可以直接执行所有的SQL操作


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