View the Exhibit to see the data in the emp table.

You created a PRIMARY KEY constraint on the empno column of the emp table, and the constraint is not deferred.

Which two statements are true in this scenario? (Choose two.)

Exhibit:
052-224(新增70题2018)

A. No index would be created or used in this case.

B. A unique index on the empno column would be created.

C. A CHECK constraint would be enforced on the empno column.

D. A NOT NULL constraint would be enforced on the empno column.

E. A bitmap unique index would be created on the empno column.

Answer: BD

Primary Key Constraints

The Oracle Database implementation of the primary key constraint guarantees that the following statements are true:

  • No two rows have duplicate values in the specified column or set of columns.

  • The primary key columns do not allow nulls.

相关文章:

  • 2021-09-24
  • 2021-09-27
  • 2021-06-15
  • 2021-07-21
  • 2021-09-21
  • 2022-12-23
  • 2021-08-15
  • 2021-09-03
猜你喜欢
  • 2022-01-03
  • 2021-04-16
  • 2021-10-16
  • 2021-07-18
  • 2021-08-17
  • 2021-12-02
  • 2021-10-26
相关资源
相似解决方案