Question 101

Which two statements are true about the ORDER BY clause?
  • Question 102

    View the Exhibit and examine the details of the ORDER_ITEMS table.

    Evaluate the following SQL statements:
    Statement 1:
    SELECT MAX(unit_price*quantity) "Maximum Order"
    FROM order_items;
    Statement 2:
    SELECT MAX(unit_price*quantity) "Maximum Order"
    FROM order_items
    GROUP BY order_id;
    Which statements are true regarding the output of these SQL statements? (Choose all that apply.)
  • Question 103

    Which three are true about the MERGEstatement? (Choose three.)
  • Question 104

    View the exhibit and examine the descriptions of the DEPTand LOCATIONStables.

    You want to update the CITYcolumn of the DEPTtable for all the rows with the corresponding value in the CITYcolumn of the LOCATIONStable for each department.
    Which SQL statement would you execute to accomplish the task?
  • Question 105

    Sales data of a company is stored in two tables, SALES1 and SALES2, with some data being duplicated across the tables. You want to display the results from the SALES1 table, which are not present in the SALES2 table.

    Which set operator generates the required output?