1z0-071 Exam Question 36

Examine the structure of the DEPARTMENTS table.

You execute the following command:

Which two statements are true?
  • 1z0-071 Exam Question 37

    In the PROMOTIONS table, the PROMO_ BEGIN_DATE column is of data type and the default date format is DD-MON-RR
    Which two statements are true about expressions using PROMO_ BEGIN_DATE in a query?
  • 1z0-071 Exam Question 38

    Evaluate the following CRTEATE TABLE commands:
    CREATE_TABLE orders
    (ord_no NUMBER (2) CONSTRAINT ord_pk PRIMARY KEY,
    ord_date DATE,
    cust_id NUMBER (4) );
    CREATE TABLE ord_items
    (ord _no NUMBER (2),
    item_no NUMBER(3),
    qty NUMBER (3) CHECK (qty BETWEEEN 100 AND 200),
    expiry_date date CHECK (expiry_date> SYSDATE),
    CONSTRAINT it_pk PRIMARY KEY (ord_no, item_no),
    CONSTARAINT ord_fk FOREIGN KEY (ord_no) REFERENCES orders (ord_no) );
    The above command fails when executed. What could be the reason?
  • 1z0-071 Exam Question 39

    Examine the data in the INVOICES table:

    Examine the data in the CURRENCIES table:
    CURRENCY_CODE
    -------------
    JPY
    GPB
    CAD
    EUR
    USD
    Which query returns the currencies in CURRENCIES that are not present in INVOICES?
  • 1z0-071 Exam Question 40

    Which three statements are correct regarding indexes? (Choose three.)