Question 56

In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'.
Evaluate the following query:

What would be the outcome?
  • Question 57

    Which two statements are true about sequences created in a single instance Oracle database? (Choose two.)
  • Question 58

    View the Exhibit and examine the data in the PRODUCTStable.

    Which statement would add a column called PRICE, which cannot contain NULL?
    ALTER TABLE products
  • Question 59

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

    Examine the structure of the EMPLOYEES table. (Choose two.)

    You must display the maximum and minimum salaries of employees hired 1 year ago.
    Which two statements would provide the correct output?