Question 86

Examine the structure proposed for the TRANSACTIONS table:

Which two statements are true regarding the creation and storage of data in the above table structure? (Choose two.)
  • Question 87

    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?
  • Question 88

    Which three statements are true about performing Data Manipulation Language (DML) operations on a view with no INSTEAD OF triggers defined? (Choose three.)
  • Question 89

    Evaluate the following CREATE TABLEcommand:

    Which statement is true regarding the above SQL statement?
  • Question 90

    Examine the commands used to create DEPARTMENT_DETAILS and COURSE_DETAILS tables:

    You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
    Which SQL statement must you use?