Question 261

Which three statements are true about GLOBAL TEMPORARY TABLES?
  • Question 262

    View the exhibit and examine the structure of the STORES table.

    You must display the NAME of stores 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_DATE in the range of 36 months starting from 01-Jan-2000 and above.
    Which SQL statement would get the desired output?
  • Question 263

    View the exhibit and examine the structure in ORDERSand ORDER_ITEMStables.

    You need to create a view that displays the ORDER_ID, ORDER_DATE, and the total number of items in each order.
    Which CREATEVIEWstatement would create the views successfully?
  • Question 264

    View the exhibit and examine the structures of the EMPLOYEESand DEPARTMENTStables.

    You want to update EMPLOYEEStable as follows:
    * Update only those employees who work in Boston or Seattle (locations 2900 and 2700).
    * Set department_idfor these employees to the department_idcorresponding to London (location_id
    2100).
    * Set the employees' salary in location_id2100 to 1.1 times the average salary of their department.
    * Set the employees' commission in location_id2100 to 1.5 times the average commission of their department.
    You issue the following command:

    What is outcome?
  • Question 265

    View the Exhibit and examine the structure of the CUSTOMERS table.

    Which two tasks would require subqueries or joins to be executed in a single statement? (Choose two.)