1z1-071 Exam Question 301

Examine this SQL statement:

Which two are true?
  • 1z1-071 Exam Question 302

    Which two tasks can be performed by using Oracle SQL statements?
  • 1z1-071 Exam Question 303

    View the exhibit and examine the ORDERS table.

    The ORDERS table contains data and all orders have been assigned a customer ID. Which statement would add a NOT NULL constraint to the CUSTOMER_ID column?
  • 1z1-071 Exam Question 304

    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?
  • 1z1-071 Exam Question 305

    Which two are true about the data dictionary?