zoukankan      html  css  js  c++  java
  • 053-616

    The EMP table has some discrepancy in data entry with a particular employee ID. You execute the
    query as shown in the Exhibit to retrieve all versions of the row that exist between two SCNs.View the Exhibit.
    Which two statements about the results of the query shown in the Exhibit are correct? (Choose two.)
    Exhibit:

    A. The LAST_SCN value in the first row is NULL, which means that the versions of the row still exist at SCN 6636300.
    B. The LAST_SCN value in the second row in NULL, which means that the version of the row still exists at SCN 6636300.
    C. The LAST_SCN value in the third row is 6636280, which means that the version of row exists above SCN 6636280.
    D. The LAST_SCN value in the second row is NULL, which means that the version of the row no longer exists because it was deleted.

      此处 FIST_SCN 和 LAST_SCN 表明了行存在的一个时间点范围。第一行是最近的一个版本,其操作状态是 I 说明是 insert,LAST_SCN 是 null,在 6636298 之后的没有新版本,所以 A正确。
      第二行的操作状态是 D 说明是 delete,也就是在 FIST_SCN 6636280 的时候删除了这个版本的行数据,所以此时 LAST_SCN 是 null,D 对。


  • 相关阅读:
    函数的返回值以及局部,全局变量
    函数的参数
    文件操作 函数
    数据类型一些基本操作方法
    设置精度的方法
    字符串和编码问题
    python中一些函数应用
    初步认识类
    P1613 跑路
    P2383 狗哥玩木棒
  • 原文地址:https://www.cnblogs.com/Babylon/p/7839828.html
Copyright © 2011-2022 走看看