Question 61

Examine the description of the PRODUCT_INFORMATION table:
  • Question 62

    In which three situations does a transaction complete? (Choose three.)
  • Question 63

    You want to write a query that prompts for two column names and the WHERE condition each time it is executed in a session but only prompts for the table name the first time it is executed.
    The variables used in your query are never undefined in your session?
    Which query can be used?
  • Question 64

    Evaluate the following CREATE SEQUENCEstatement:
    CREATE SEQUENCE seq1
    START WITH 100
    INCREMENT BY 10
    MAXVALUE 200
    CYCLE
    NOCACHE;
    The sequence SEQ1has generated numbers up to the maximum limit of 200. You issue the following SQL statement:
    SELECT seq1.nextval FROM dual;
    What is displayed by the SELECTstatement?
  • Question 65

    View the exhibit and examine the structure of the STOREStable.
    STORES table
    Name Null? Type
    ----------------- ----- -------------
    STORE_ID NUMBER
    NAME VARCHAR2(100)
    ADDRESS VARCHAR2(200)
    CITY VARCHAR2(100)
    COUNTRY VARCHAR2(100)
    START_DATE DATE
    END_DATE DATE
    PROPERTY_PRICE NUMBER
    You want to display the NAME of the store along with the ADDRESS, START_DATE, PROPERTY_PRICE, and the projected property price, which is 115% of property price.
    The stores displayed must have START_DATEin the range of 36 months starting from 01-Jan-2000 and above.
    Which SQL statement would get the desired output?