Question 146

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 147

    SCOTT is a user in the database.
    Evaluate the commands issued by the DBA:

    Which statement is true regarding the execution of the above commands?
  • Question 148

    Which two statements are true regarding the USING and ON clauses in table joins?
  • Question 149

    Examine these SQL statements that are executed in the given order:

    What will be the status of the foreign key EMP_MGR_FK?
  • Question 150

    View the Exhibit and examine the structure of CUSTOMERS table.
    Using the CUSTOMERS table, you need to generate a report that shows an increase in the credit limit by 15% for all customers. Customers whose credit limit has not been entered should have the message "Not Available" displayed.
    Which SQL statement would produce the required result?