Question 181

You issue the following command to drop the PRODUCTStable:
SQL > DROP TABLE products;
Which three statements are true about the implication of this command?
  • Question 182

    Examine these SQL statements which execute successfully:

    Which two statements are true after execution? (Choose two.)
  • Question 183

    Which statement is true regarding the default behavior of the ORDER BYclause? (Choose two.)
  • Question 184

    View the Exhibits and examine PRODUCTS and SALES tables.

    You issue the following query to display produce name and the number of times the product has been sold:
    SQL>SLECT p. PROD_name, i . item _cnt
    FROM (SELECT prod_id =, count (*) item_cnt
    FROMm sales
    GROUP BY prod_id) I RIGHT OUTER JION products p
    On i. prod _id =.prod_id;
    What happens when the above statement is executed?
  • Question 185

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

    Which two tasks would require subqueries? (Choose two.)