1z0-071 Exam Question 176

See the Exhibit and examine the structure of the PROMOTIONS table:

Using the PROMOTIONS table,
you need to find out the average cost for all promos in the range $0-2000 and $2000-5000 in category A.
You issue the following SQL statements:

What would be the outcome?
  • 1z0-071 Exam Question 177

    View the exhibits and examine the structures of the COSTS and PROMOTIONS tables.


    Evaluate the following SQL statement:

    What would be the outcome of the above SQL statement?
  • 1z0-071 Exam Question 178

    Examine this SELECT statement and view the Exhibit to see its output:

    SELECT constraints_name, constraints_type, search_condition, r_constraint_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS'; Which two statements are true about the output? (Choose two.)
  • 1z0-071 Exam Question 179

    In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'.
    Evaluate the following query:

    What would be the outcome?
  • 1z0-071 Exam Question 180

    View the Exhibit and examine the structure of the ORDERS table. The ORDER_ID column is the PRIMARY KEY in the ORDERS table.

    Evaluate the following CREATE TABLE command:
    CREATE TABLE new_orders(ord_id, ord_date DEFAULT SYSDATE, cus_id)
    AS
    SELECT order_id.order_date,customer_id
    FROM orders;
    Which statement is true regarding the above command?