1z0-071 Exam Question 121

View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables.

There is only one customer with the cust_last_name column having value Roberts. Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600?
  • 1z0-071 Exam Question 122

    Which three statements are true regarding subqueries?
  • 1z0-071 Exam Question 123

    In the PROMOTIONS table, the PROMO_BEGIN_DATE column is of data type DATE and the default date format is DD-MON-RR.
    Which two statements are true about expressions using PROMO_BEGIN_DATE contained a query?
  • 1z0-071 Exam Question 124

    Examine the data in the EMPLOYEES table:

    Which statement will compute the total annual compensation for each employee?
  • 1z0-071 Exam Question 125

    Examine the structure of the ORDERS table: (Choose the best answer.)

    You want to find the total value of all the orders for each year and issue this command:
    SQL> SELECT TO_CHAR(order_date,'rr'), SUM(order_total) FROM orders
    GROUP BY TO_CHAR(order_date, 'yyyy');
    Which statement is true regarding the result?