1z0-071 Exam Question 186

Which two statements are true about sequences created in a single instance Oracle database? (Choose two.)
  • 1z0-071 Exam Question 187

    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?
  • 1z0-071 Exam Question 188

    Which statement is true regarding the INTERSECT operator?
  • 1z0-071 Exam Question 189

    Examine the data in the CUST NAME column of the CUSTOMERS table:
    CUST_NAME
    ------------------------------
    Renske Ladwig
    Jason Mallin
    Samuel McCain
    Allan MCEwen
    Irene Mikkilineni
    Julia Nayer
    You want to display the CUST_NAME values where the last name starts with Mc or MC. Which two WHERE clauses give the required result?
  • 1z0-071 Exam Question 190

    View the Exhibit and examine the description for the PRODUCTS and SALES table.

    PROD_ID is a primary key in the PRODUCTS table and foreign key in the SALES table with ON DELETE CASCADE option. The SALES table contains data for the last three years. You want to remove all the rows from the PRODUCTS table for which no sale was done for the last three years.
    Which is the valid DELETE statement?