nerdexam
Oracle

1Z0-061 · Question #243

Examine the SQL statement that creates ORDERS table: CREATE TABLE orders (SER_NO NUMBER UNIQUE, ORDER_ID NUMBER, ORDER_DATE DATE NOT NULL, STATUS VARCHAR2(10) CHECK (status IN ('CREDIT', 'CASH'))…

The correct answer is A. SER_NO F. composite index on ORDER_ID and ORDER_DATE. Index exist for UNIQUE and PRIMARY KEY constraints

Using DDL Statements to Create and Manage Tables

Question

Examine the SQL statement that creates ORDERS table:

CREATE TABLE orders (SER_NO NUMBER UNIQUE, ORDER_ID NUMBER, ORDER_DATE DATE NOT NULL, STATUS VARCHAR2(10) CHECK (status IN ('CREDIT', 'CASH')), PROD_ID NUMBER REFERENCES PRODUCTS(PRODUCT_ID), ORD_TOTAL NUMBER, PRIMARY KEY (order_id, order_date)); For which columns would an index be automatically created when you execute the above SQL statement? (Choose two.)

Options

  • ASER_NO
  • BORDER_ID
  • CSTATUS
  • DPROD_ID
  • EORD_TOTAL
  • Fcomposite index on ORDER_ID and ORDER_DATE

How the community answered

(53 responses)
  • A
    72% (38)
  • B
    6% (3)
  • C
    4% (2)
  • D
    2% (1)
  • E
    17% (9)

Explanation

Index exist for UNIQUE and PRIMARY KEY constraints

Topics

#automatic indexes#PRIMARY KEY#UNIQUE constraint#DDL

Community Discussion

No community discussion yet for this question.

Full 1Z0-061 Practice