Evaluate the set of SQL statements:What is true about the set?()A. The DESCRIBE DEPT statement displays the structure of the DEPT table.B. The ROLLBACK statement frees the storage space occupies by the DEPT table.C. The DESCRIBE DEPT statement returns an

题目
Evaluate the set of SQL statements:What is true about the set?()

A. The DESCRIBE DEPT statement displays the structure of the DEPT table.

B. The ROLLBACK statement frees the storage space occupies by the DEPT table.

C. The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.

D. The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.


相似考题
更多“Evaluate the set of SQL statements:What is true about the set?() ”相关问题
  • 第1题:

    YouhaveanExchangeServer2010organizationnamedcontoso.com.YourcompanyisInvestigatingausernamedUser1.YouneedtopreventUser1frompermanentlydeletingtheitemsinhismailbox.Whatshouldyourun?()

    A.Set-MailboxUser1-LitigationHoldEnabled$true

    B.Set-MailboxUser1-ModerationEnabled$true

    C.Set-MailboxUser1-RetainDeletedItemsUntilBackup$true

    D.Set-MailboxUser1-RetentionHoldEnabled$true


    参考答案:A

  • 第2题:

    22、在MyBaits映射文件中使用<set>和<if>元素组合进行update语句动态SQL组装时,如果<set>元素内包含的内容都为空,则会出现SQL语法错误。()


    SQL语法错误;语法错误

  • 第3题:

    1、下列选项中,执行时会报错的语句是()。

    A.set('Python')

    B.set(35.2,True)

    C.set([35.2,True])

    D.set((35.2,True))


    int('23+1')

  • 第4题:

    下列选项中,执行时会报错的语句是()。

    A.set('Python')

    B.set(35.2,True)

    C.set([35.2,True])

    D.set((35.2,True))


    int('23+1')

  • 第5题:

    【单选题】以下关于MyBatis的<set>元素的使用及说法正确的是。

    A.<set>元素主要用于更新操作,其主要作用是在动态包含的SQL语句前输出一个SET关键字,并将SQL语句中最后一个多余的逗号去除。#B.使用MyBatis的<set>元素来更新操作时,前端需要传入所有参数字段,否则未传入字段会默认设置为空。#C.在映射文件中使用<set>和<if>元素组合进行update语句动态SQL组装时, <set>元素内包含的内容可以都为空,<if>元素会进行判断处理。#D.在映射文件进行更新操作时,只需要使用<set>元素就可以进行动态SQL组装。
    D

  • 第6题:

    5、在MyBaits映射文件中使用<set>和<if>元素组合进行update语句动态SQL组装时,如果<set>元素内包含的内容都为空,则会出现SQL语法错误。


    正确解析:映射文件的作用:1.元素用来映射查询语句,它可以帮助我们从数据库中读取出数据,并组装数据给业务开发人员2.元素用于映射插入语句,在执行完元素中定义的SQL语句后,会返回一个表示插入记录数的整数3.和元素的使用比较简单,它们的属性配置也基本相同 4.元素的作用就是定义可重用的SQL代码片段,然后在其他语句中引用这一代码片段。